Home
last modified time | relevance | path

Searched refs:Uint64 (Results 1 – 25 of 34) sorted by relevance

12

/AliOS-Things-master/components/SDL2/src/test/
A DSDL_test_fuzzer.c126 Uint64
130 Uint64 v64; in SDLTest_RandomUint64()
147 Uint64 v64; in SDLTest_RandomSint64()
207 static Uint64
208 SDLTest_GenerateUnsignedBoundaryValues(const Uint64 maxValue, Uint64 boundary1, Uint64 boundary2, S… in SDLTest_GenerateUnsignedBoundaryValues()
210 Uint64 b1, b2; in SDLTest_GenerateUnsignedBoundaryValues()
211 Uint64 delta; in SDLTest_GenerateUnsignedBoundaryValues()
276 (Uint64) boundary1, (Uint64) boundary2, in SDLTest_RandomUint8BoundaryValue()
286 (Uint64) boundary1, (Uint64) boundary2, in SDLTest_RandomUint16BoundaryValue()
300 (Uint64) boundary1, (Uint64) boundary2, in SDLTest_RandomUint32BoundaryValue()
[all …]
A DSDL_test_harness.c100 static Uint64
104 Uint64 *keys; in SDLTest_GenerateExecKey()
156 keys = (Uint64 *)md5Context.digest; in SDLTest_GenerateExecKey()
230 …estSuiteReference *testSuite, const SDLTest_TestCaseReference *testCase, Uint64 execKey, SDL_bool … in SDLTest_RunTest()
370 int SDLTest_RunSuites(SDLTest_TestSuiteReference *testSuites[], const char *userRunSeed, Uint64 use… in SDLTest_RunSuites()
382 Uint64 execKey; in SDLTest_RunSuites()
A DSDL_test_memory.c43 Uint64 stack[10];
229 Uint64 total_allocated; in SDLTest_LogAllocations()
/AliOS-Things-master/components/SDL2/test/
A Dtestautomation_sdltest.c92 Uint64 uresult; in sdltest_randomNumber()
94 Uint64 umax; in sdltest_randomNumber()
120 umax = ((Uint64)1 << 32) - 1; in sdltest_randomNumber()
162 Uint64 uresult; in sdltest_randomBoundaryNumberUint8()
272 Uint64 uresult; in sdltest_randomBoundaryNumberUint16()
382 Uint64 uresult; in sdltest_randomBoundaryNumberUint32()
492 Uint64 uresult; in sdltest_randomBoundaryNumberUint64()
555 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(1, (Uint64)0xffffffffffffffffULL, SDL_FALSE); in sdltest_randomBoundaryNumberUint64()
565 uresult = (Uint64)SDLTest_RandomUint64BoundaryValue(0, (Uint64)0xfffffffffffffffeULL, SDL_FALSE); in sdltest_randomBoundaryNumberUint64()
568 uresult == (Uint64)0xffffffffffffffffULL, in sdltest_randomBoundaryNumberUint64()
[all …]
A Dtestqsort.c55 Uint64 seed = 0; in main()
64 if (seed <= ((Uint64)0xffffffff)) { in main()
A Dtestautomation_rwops.c525 Uint64 sv_file; in rwops_testCompareRWFromMemWithRWFromFile()
526 Uint64 sv_mem; in rwops_testCompareRWFromMemWithRWFromFile()
595 Uint64 BE64value; in rwops_testFileWriteReadEndian()
598 Uint64 LE64value; in rwops_testFileWriteReadEndian()
601 Uint64 BE64test; in rwops_testFileWriteReadEndian()
604 Uint64 LE64test; in rwops_testFileWriteReadEndian()
A Dtestautomation_timer.c41 Uint64 result; in timer_getPerformanceCounter()
56 Uint64 result; in timer_getPerformanceFrequency()
A Dtestautomation_platform.c45 ret = _compareSizeOfType( sizeof(Uint64), 8 ); in platform_testTypes()
46 …SDLTest_AssertCheck( ret == 0, "sizeof(Uint64) = %lu, expected 8", (unsigned long)sizeof(Uint64) ); in platform_testTypes()
63 Uint64 value64, swapped64; in platform_testEndianessAndSwap()
A Dtestplatform.c71 if (badsize(sizeof(Uint64), 8)) { in TestTypes()
74 (unsigned int)sizeof(Uint64)); in TestTypes()
93 Uint64 value64, swapped64; in TestEndian()
A Dtestsprite2.c285 Uint64 seed; in main()
380 seed = (Uint64)iterations; in main()
383 seed = (Uint64)time(NULL); in main()
A Dtestautomation.c37 Uint64 userExecKey = 0; in main()
/AliOS-Things-master/components/SDL2/include/
A DSDL_test_fuzzer.h63 void SDLTest_FuzzerInit(Uint64 execKey);
116 Uint64 SDLTest_RandomUint64(void);
230 Uint64 SDLTest_RandomUint64BoundaryValue(Uint64 boundary1, Uint64 boundary2, SDL_bool validDomain);
A DSDL_endian.h173 SDL_FORCE_INLINE Uint64
174 SDL_Swap64(Uint64 x) in SDL_Swap64()
182 Uint64 u; in SDL_Swap64()
191 SDL_FORCE_INLINE Uint64
192 SDL_Swap64(Uint64 x) in SDL_Swap64()
198 SDL_FORCE_INLINE Uint64
199 SDL_Swap64(Uint64 x) in SDL_Swap64()
A DSDL_timer.h64 extern DECLSPEC Uint64 SDLCALL SDL_GetPerformanceCounter(void);
69 extern DECLSPEC Uint64 SDLCALL SDL_GetPerformanceFrequency(void);
A DSDL_rwops.h264 extern DECLSPEC Uint64 SDLCALL SDL_ReadLE64(SDL_RWops * src);
265 extern DECLSPEC Uint64 SDLCALL SDL_ReadBE64(SDL_RWops * src);
279 extern DECLSPEC size_t SDLCALL SDL_WriteLE64(SDL_RWops * dst, Uint64 value);
280 extern DECLSPEC size_t SDLCALL SDL_WriteBE64(SDL_RWops * dst, Uint64 value);
A DSDL_test_harness.h123 int SDLTest_RunSuites(SDLTest_TestSuiteReference *testSuites[], const char *userRunSeed, Uint64 use…
A DSDL_stdinc.h214 #define SDL_MAX_UINT64 ((Uint64)0xFFFFFFFFFFFFFFFFull) /* 18446744073709551615 */
215 #define SDL_MIN_UINT64 ((Uint64)(0x0000000000000000ull)) /* 0 */
216 typedef uint64_t Uint64; typedef
322 SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
487 extern DECLSPEC char *SDLCALL SDL_ulltoa(Uint64 value, char *str, int radix);
494 extern DECLSPEC Uint64 SDLCALL SDL_strtoull(const char *str, char **endp, int base);
/AliOS-Things-master/components/SDL2/src/timer/dummy/
A DSDL_systimer.c55 Uint64
61 Uint64
/AliOS-Things-master/components/SDL2/src/timer/haiku/
A DSDL_systimer.c60 Uint64
66 Uint64
/AliOS-Things-master/components/SDL2/src/timer/unix/
A DSDL_systimer.c137 Uint64
140 Uint64 ticks; in SDL_GetPerformanceCounter()
170 Uint64
181 Uint64 freq = mach_base_info.denom; in SDL_GetPerformanceFrequency()
/AliOS-Things-master/components/SDL2/src/core/linux/
A DSDL_threadprio.c135 Uint64 ui64 = (Uint64)thread; in rtkit_setpriority_nice()
164 Uint64 ui64 = (Uint64)thread; in rtkit_setpriority_realtime()
/AliOS-Things-master/components/SDL2/src/timer/psp/
A DSDL_systimer.c68 Uint64
74 Uint64
/AliOS-Things-master/components/SDL2/src/timer/windows/
A DSDL_systimer.c146 Uint64
157 Uint64
/AliOS-Things-master/components/SDL2/src/file/
A DSDL_rwops.c866 Uint64
869 Uint64 value = 0; in SDL_ReadLE64()
875 Uint64
878 Uint64 value = 0; in SDL_ReadBE64()
919 SDL_WriteLE64(SDL_RWops * dst, Uint64 value) in SDL_WriteLE64()
921 const Uint64 swapped = SDL_SwapLE64(value); in SDL_WriteLE64()
926 SDL_WriteBE64(SDL_RWops * dst, Uint64 value) in SDL_WriteBE64()
928 const Uint64 swapped = SDL_SwapBE64(value); in SDL_WriteBE64()
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_string.c199 SDL_ScanUnsignedLongLong(const char *text, int radix, Uint64 * valuep) in SDL_ScanUnsignedLongLong()
202 Uint64 value = 0; in SDL_ScanUnsignedLongLong()
818 SDL_ulltoa(Uint64 value, char *string, int radix) in SDL_ulltoa()
935 Uint64
942 Uint64 value = 0; in SDL_strtoull()
1245 Uint64 value = 0; in SDL_vsscanf()
1249 Uint64 *valuep = va_arg(ap, Uint64 *); in SDL_vsscanf()
1533 SDL_PrintUnsignedLongLong(char *text, size_t maxlen, SDL_FormatInfo *info, Uint64 value) in SDL_PrintUnsignedLongLong()
1805 va_arg(ap, Uint64)); in SDL_vsnprintf()

Completed in 28 milliseconds

12