HomeSort by: relevance | last modified time | path
    Searched defs:is_decimal (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/c-family/
c-pretty-print.cc 1142 bool is_decimal = floating_cst.decimal;
1146 int max_digits10 = 2 + (is_decimal ? fmt->p : fmt->p * 643L / 2136);
1139 bool is_decimal = floating_cst.decimal; local
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-pretty-print.cc 1093 bool is_decimal = floating_cst.decimal;
1097 int max_digits10 = 2 + (is_decimal ? fmt->p : fmt->p * 643L / 2136);
1090 bool is_decimal = floating_cst.decimal; local
  /xsrc/external/mit/MesaLib/dist/src/imgui/
imgui_widgets.cpp 1734 const bool is_decimal = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_Double);
1736 const bool is_power = (power != 1.0f && is_decimal && has_min_max && (v_max - v_min < FLT_MAX));
1754 int decimal_precision = is_decimal ? ImParseFormatPrecision(format, 3) : 0;
1821 if (v_cur < v_min || (v_cur > *v && adjust_delta < 0.0f && !is_decimal))
1823 if (v_cur > v_max || (v_cur < *v && adjust_delta > 0.0f && !is_decimal))
2110 const bool is_decimal = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_Double); local
2111 const bool is_power = (power != 1.0f) && is_decimal;
2117 if (!is_decimal && v_range >= 0) // v_range < 0 may happen on integer overflows
2171 const int decimal_precision = is_decimal ? ImParseFormatPrecision(format, 3) : 0;
2223 if (is_decimal)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/imgui/
imgui_widgets.cpp 1734 const bool is_decimal = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_Double);
1736 const bool is_power = (power != 1.0f && is_decimal && has_min_max && (v_max - v_min < FLT_MAX));
1754 int decimal_precision = is_decimal ? ImParseFormatPrecision(format, 3) : 0;
1821 if (v_cur < v_min || (v_cur > *v && adjust_delta < 0.0f && !is_decimal))
1823 if (v_cur > v_max || (v_cur < *v && adjust_delta > 0.0f && !is_decimal))
2110 const bool is_decimal = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_Double); local
2111 const bool is_power = (power != 1.0f) && is_decimal;
2117 if (!is_decimal && v_range >= 0) // v_range < 0 may happen on integer overflows
2171 const int decimal_precision = is_decimal ? ImParseFormatPrecision(format, 3) : 0;
2223 if (is_decimal)
    [all...]

Completed in 28 milliseconds