Searched refs:IM_S64_MAX (Results 1 - 2 of 2) sorted by relevance
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_widgets.cpp | 110 static const ImS64 IM_S64_MAX = LLONG_MAX; // (9223372036854775807ll); variable 113 static const ImS64 IM_S64_MAX = 9223372036854775807LL; variable 1962 if (op == '+') { *(ImS64*)output = ImAddClampOverflow(*(const ImS64*)arg1, *(const ImS64*)arg2, IM_S64_MIN, IM_S64_MAX); } in DataTypeApplyOp() 1963 if (op == '-') { *(ImS64*)output = ImSubClampOverflow(*(const ImS64*)arg1, *(const ImS64*)arg2, IM_S64_MIN, IM_S64_MAX); } in DataTypeApplyOp() 2367 case ImGuiDataType_S64: return DragBehaviorT<ImS64, ImS64, double>(data_type, (ImS64*)p_v, v_speed, p_min ? *(const ImS64* )p_min : IM_S64_MIN, p_max ? *(const ImS64* )p_max : IM_S64_MAX, format, flags); in DragBehavior() 2978 IM_ASSERT(*(const ImS64*)p_min >= IM_S64_MIN / 2 && *(const ImS64*)p_max <= IM_S64_MAX / 2);
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_widgets.cpp | 83 static const ImS64 IM_S64_MAX = LLONG_MAX; // (9223372036854775807ll); variable 86 static const ImS64 IM_S64_MAX = 9223372036854775807LL; variable 1851 case ImGuiDataType_S64: return DragBehaviorT<ImS64, ImS64, double>(data_type, (ImS64*)v, v_speed, v_min ? *(const ImS64* )v_min : IM_S64_MIN, v_max ? *(const ImS64* )v_max : IM_S64_MAX, format, power, flags); 2280 IM_ASSERT(*(const ImS64*)v_min >= IM_S64_MIN/2 && *(const ImS64*)v_max <= IM_S64_MAX/2);
|
Completed in 21 milliseconds