Home
last modified time | relevance | path

Searched refs:ImS64 (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_widgets.cpp82 static const ImS64 IM_S64_MIN = LLONG_MIN; // (-9223372036854775807ll - 1ll);
83 static const ImS64 IM_S64_MAX = LLONG_MAX; // (9223372036854775807ll);
85 static const ImS64 IM_S64_MIN = -9223372036854775807LL - 1;
86 static const ImS64 IM_S64_MAX = 9223372036854775807LL;
1502 { sizeof(ImS64), "%I64d","%I64d" },
1505 { sizeof(ImS64), "%lld", "%lld" },
1566 if (op == '+') *(ImS64*)output = *(const ImS64*)arg1 + *(const ImS64*)arg2; in DataTypeApplyOp()
1567 else if (op == '-') *(ImS64*)output = *(const ImS64*)arg1 - *(const ImS64*)arg2; in DataTypeApplyOp()
1851 …rn DragBehaviorT<ImS64, ImS64, double>(data_type, (ImS64*)v, v_speed, v_min ? *(const ImS64* )v_m… in DragBehavior()
1852 …case ImGuiDataType_U64: return DragBehaviorT<ImU64, ImS64, double>(data_type, (ImU64*)v, v_spe… in DragBehavior()
[all …]
Dimgui.h156 typedef signed __int64 ImS64; // 64-bit signed integer (pre and post C++11 with Visual Studio) typedef
160 typedef int64_t ImS64; // 64-bit signed integer (pre C++11) typedef
163 typedef signed long long ImS64; // 64-bit signed integer (post C++11) typedef