Searched refs:ImU64 (Results 1 - 5 of 5) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui_widgets.cpp | 88 static const ImU64 IM_U64_MIN = 0; 90 static const ImU64 IM_U64_MAX = ULLONG_MAX; // (0xFFFFFFFFFFFFFFFFull); 92 static const ImU64 IM_U64_MAX = (2ULL * 9223372036854775807LL + 1); 1503 { sizeof(ImU64), "%I64u","%I64u" }, 1506 { sizeof(ImU64), "%llu", "%llu" }, 1542 return ImFormatString(buf, buf_size, format, *(const ImU64*)data_ptr); 1570 if (op == '+') *(ImU64*)output = *(const ImU64*)arg1 + *(const ImU64*)arg2; 1571 else if (op == '-') *(ImU64*)outpu [all...] |
| H A D | imgui.h | 157 typedef unsigned __int64 ImU64; // 64-bit unsigned integer (pre and post C++11 with Visual Studio) typedef in typeref:typename:unsigned __int64 161 typedef uint64_t ImU64; // 64-bit unsigned integer (pre C++11) typedef in typeref:typename:uint64_t 164 typedef unsigned long long ImU64; // 64-bit unsigned integer (post C++11) typedef in typeref:typename:unsigned long long
|
| H A D | imgui_demo.cpp | 1198 ImU64 ULLONG_MAX = (2ULL * 9223372036854775807LL + 1); 1203 const ImU64 u64_zero = 0, u64_one = 1, u64_fifty = 50, u64_min = 0, u64_max = ULLONG_MAX/2, u64_hi_a = ULLONG_MAX/2 - 100, u64_hi_b = ULLONG_MAX/2; 1211 static ImU64 u64_v = (ImU64)-1;
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui_widgets.cpp | 88 static const ImU64 IM_U64_MIN = 0; 90 static const ImU64 IM_U64_MAX = ULLONG_MAX; // (0xFFFFFFFFFFFFFFFFull); 92 static const ImU64 IM_U64_MAX = (2ULL * 9223372036854775807LL + 1); 1503 { sizeof(ImU64), "%I64u","%I64u" }, 1506 { sizeof(ImU64), "%llu", "%llu" }, 1542 return ImFormatString(buf, buf_size, format, *(const ImU64*)data_ptr); 1570 if (op == '+') *(ImU64*)output = *(const ImU64*)arg1 + *(const ImU64*)arg2; 1571 else if (op == '-') *(ImU64*)outpu [all...] |
| H A D | imgui.h | 157 typedef unsigned __int64 ImU64; // 64-bit unsigned integer (pre and post C++11 with Visual Studio) typedef in typeref:typename:unsigned __int64 161 typedef uint64_t ImU64; // 64-bit unsigned integer (pre C++11) typedef in typeref:typename:uint64_t 164 typedef unsigned long long ImU64; // 64-bit unsigned integer (post C++11) typedef in typeref:typename:unsigned long long
|
Completed in 66 milliseconds