Home
last modified time | relevance | path

Searched refs:ImPow (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_widgets.cpp1675 …return (decimal_precision < IM_ARRAYSIZE(min_steps)) ? min_steps[decimal_precision] : ImPow(10.0f,… in GetMinimumStepAtDecimalPrecision()
1789 …FLOATTYPE v_old_norm_curved = ImPow((FLOATTYPE)(v_cur - v_min) / (FLOATTYPE)(v_max - v_min), (FLOA… in DragBehaviorT()
1791 v_cur = v_min + (TYPE)ImPow(ImSaturate((float)v_new_norm_curved), power) * (v_max - v_min); in DragBehaviorT()
1806 …FLOATTYPE v_cur_norm_curved = ImPow((FLOATTYPE)(v_cur - v_min) / (FLOATTYPE)(v_max - v_min), (FLOA… in DragBehaviorT()
2089 return (1.0f - ImPow(f, 1.0f/power)) * linear_zero_pos; in SliderCalcRatioFromValueT()
2094 return linear_zero_pos + ImPow(f, 1.0f/power) * (1.0f - linear_zero_pos); in SliderCalcRatioFromValueT()
2129 …const FLOATTYPE linear_dist_min_to_0 = ImPow(v_min >= 0 ? (FLOATTYPE)v_min : -(FLOATTYPE)v_min, (F… in SliderBehaviorT()
2130 …const FLOATTYPE linear_dist_max_to_0 = ImPow(v_max >= 0 ? (FLOATTYPE)v_max : -(FLOATTYPE)v_max, (F… in SliderBehaviorT()
2205 a = ImPow(a, power); in SliderBehaviorT()
2216 a = ImPow(a, power); in SliderBehaviorT()
Dimgui_internal.h214 static inline float ImPow(float x, float y) { return powf(x, y)… in ImPow() function
215 static inline double ImPow(double x, double y) { return pow(x, y);… in ImPow() function
Dimgui_draw.cpp137 #define STBTT_pow(x,y) ImPow(x,y)