/third_party/mesa3d/src/imgui/ |
D | imgui_widgets.cpp | 1730 bool ImGui::DragBehaviorT(ImGuiDataType data_type, TYPE* v, float v_speed, const TYPE v_min, const … in DragBehaviorT() argument 1735 const bool has_min_max = (v_min != v_max); in DragBehaviorT() 1736 const bool is_power = (power != 1.0f && is_decimal && has_min_max && (v_max - v_min < FLT_MAX)); in DragBehaviorT() 1739 if (v_speed == 0.0f && has_min_max && (v_max - v_min < FLT_MAX)) in DragBehaviorT() 1740 v_speed = (float)((v_max - v_min) * g.DragSpeedDefaultRatio); in DragBehaviorT() 1767 …_outward = has_min_max && ((*v >= v_max && adjust_delta > 0.0f) || (*v <= v_min && adjust_delta < … in DragBehaviorT() 1789 …FLOATTYPE v_old_norm_curved = ImPow((FLOATTYPE)(v_cur - v_min) / (FLOATTYPE)(v_max - v_min), (FLOA… in DragBehaviorT() 1790 FLOATTYPE v_new_norm_curved = v_old_norm_curved + (g.DragCurrentAccum / (v_max - v_min)); 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() [all …]
|
D | imgui.h | 413 … DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_ma… 414 … DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_ma… 415 … DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_ma… 416 … DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_ma… 417 …, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_ma… 418 …IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, in… 419 …IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0,… 420 …IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0,… 421 …IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0,… 422 … label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0… [all …]
|
D | imgui_internal.h | 1472 …(ImGuiID id, ImGuiDataType data_type, void* v, float v_speed, const void* v_min, const void* v_max… 1473 …nst ImRect& bb, ImGuiID id, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max… 1482 …bool DragBehaviorT(ImGuiDataType data_type, T* v, float v_speed, const T v_min, const T v_max, co… 1483 …iorT(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, T* v, const T v_min, const T v_max, co… 1484 …IMGUI_API float SliderCalcRatioFromValueT(ImGuiDataType data_type, T v, T v_min, T v_max, float po…
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui.h | 536 … DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_ma… 537 … DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_ma… 538 … DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_ma… 539 … DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_ma… 540 …, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_ma… 541 …IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, in… 542 …IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0,… 543 …IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0,… 544 …IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0,… 545 … label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0… [all …]
|
D | imgui_widgets.cpp | 2114 static bool DataTypeClampT(T* v, const T* v_min, const T* v_max) in DataTypeClampT() argument 2117 if (v_min && *v < *v_min) { *v = *v_min; return true; } in DataTypeClampT() 2226 bool ImGui::DragBehaviorT(ImGuiDataType data_type, TYPE* v, float v_speed, const TYPE v_min, const … in DragBehaviorT() argument 2230 const bool is_clamped = (v_min < v_max); in DragBehaviorT() 2235 if (v_speed == 0.0f && is_clamped && (v_max - v_min < FLT_MAX)) in DragBehaviorT() 2236 v_speed = (float)((v_max - v_min) * g.DragSpeedDefaultRatio); in DragBehaviorT() 2261 …if (is_logarithmic && (v_max - v_min < FLT_MAX) && ((v_max - v_min) > 0.000001f)) // Epsilon to av… in DragBehaviorT() 2262 adjust_delta /= (float)(v_max - v_min); in DragBehaviorT() 2267 …g_outward = is_clamped && ((*v >= v_max && adjust_delta > 0.0f) || (*v <= v_min && adjust_delta < … in DragBehaviorT() 2294 …ric = ScaleRatioFromValueT<TYPE, SIGNEDTYPE, FLOATTYPE>(data_type, v_cur, v_min, v_max, is_logarit… in DragBehaviorT() [all …]
|
D | imgui_internal.h | 2696 …T> IMGUI_API float ScaleRatioFromValueT(ImGuiDataType data_type, T v, T v_min, T v_max, bool is_… 2697 … IMGUI_API T ScaleValueFromRatioT(ImGuiDataType data_type, float t, T v_min, T v_max, bool is_… 2698 …I_API bool DragBehaviorT(ImGuiDataType data_type, T* v, float v_speed, T v_min, T v_max, const ch… 2699 …rBehaviorT(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, T* v, T v_min, T v_max, const ch…
|
/third_party/skia/tools/skqp/ |
D | README_ALGORITHM.md | 32 v_min = get_color(pixel_min, color_channel) 36 elif value < v_min: 37 channel_error = v_min - value
|
/third_party/mesa3d/src/util/ |
D | u_debug.c | 222 unsigned v_maj, v_min; in debug_get_version_option() local 225 n = sscanf(str, "%u.%u", &v_maj, &v_min); in debug_get_version_option() 231 *minor = v_min; in debug_get_version_option()
|
/third_party/ffmpeg/libpostproc/ |
D | postprocess_altivec_template.c | 632 vector unsigned char v_min; in dering_altivec() local 638 if (vec_all_lt(vec_sub(v_max, v_min), v_dt)) in dering_altivec() 641 v_avg = vec_avg(v_min, v_max); in dering_altivec()
|
/third_party/skia/third_party/externals/imgui/docs/ |
D | CHANGELOG.txt | 478 - SliderInt: Fixed click/drag when v_min==v_max from setting the value to zero. (#3774) [@erwincoum… 479 Would also repro with DragFloat() when using ImGuiSliderFlags_Logarithmic with v_min==v_max. 684 where v_min == v_max. (#3361) 762 - DragInt, DragFloat, DragScalar: Obsoleted use of v_min > v_max to lock edits (introduced in 1.73,… 1196 - DragInt, DragFloat, DragScalar: Using (v_min > v_max) allows locking any edits to the value. 2607 - SliderInt(), SliderFloat() supports reverse direction (where v_min > v_max). (#854) 2608 - SliderInt(), SliderFloat() better support for when v_min==v_max. (#919)
|
D | TODO.txt | 175 - slider: tint background based on value (e.g. v_min -> v_max, or use 0.0f either side of the sign)
|
/third_party/libabigail/tests/data/test-annotate/ |
D | test14-pr18893.so.abi | 19029 <!-- Real gridWrap::v_min --> 19030 …<var-decl name='v_min' type-id='type-id-272' visibility='default' filepath='libnurbs/nurbtess/grid…
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
D | test14-pr18893.so.abi | 12175 …<var-decl name='v_min' type-id='type-id-272' visibility='default' filepath='libnurbs/nurbtess/grid…
|