Lines Matching refs:U32
58 typedef uint32_t U32; typedef
64 typedef unsigned int U32; typedef
81 static const U32 nbTestsDefault = 256 KB;
84 static const U32 prime1 = 2654435761U;
85 static const U32 prime2 = 2246822519U;
98 static const U32 refreshRate = 150;
99 static U32 g_time = 0;
105 static U32 no_prompt = 0;
107 static U32 displayLevel = 2;
108 static U32 pause = 0;
114 static U32 FUZ_GetMilliStart(void) in FUZ_GetMilliStart()
117 U32 nCount; in FUZ_GetMilliStart()
119 nCount = (U32) (((tb.time & 0xFFFFF) * 1000) + tb.millitm); in FUZ_GetMilliStart()
124 static U32 FUZ_GetMilliSpan(U32 nTimeStart) in FUZ_GetMilliSpan()
126 U32 nCurrent = FUZ_GetMilliStart(); in FUZ_GetMilliSpan()
127 U32 nSpan = nCurrent - nTimeStart; in FUZ_GetMilliSpan()
137 U32 rand32 = *src; in FUZ_rand()
148 static void FUZ_fillCompressibleNoiseBuffer(void* buffer, unsigned bufferSize, double proba, U32* s… in FUZ_fillCompressibleNoiseBuffer()
152 U32 P32 = (U32)(32768 * proba); in FUZ_fillCompressibleNoiseBuffer()
185 static unsigned FUZ_highbit(U32 v32) in FUZ_highbit()
198 int basicTests(U32 seed, double compressibility) in basicTests()
204 U32 randState = seed; in basicTests()
285 unsigned maxBits = FUZ_highbit((U32)decodedBufferSize); in basicTests()
377 static const U32 srcDataLength = 9 MB; /* needs to be > 2x4MB to test large blocks */
379 int fuzzerTests(U32 seed, unsigned nbTests, unsigned startTest, double compressibility) in fuzzerTests()
386 U32 coreRand = seed; in fuzzerTests()
413 U32 randState = coreRand ^ prime1; in fuzzerTests()
437 crcOrig = XXH64((BYTE*)srcBuffer+srcStart, (U32)srcSize, 1); in fuzzerTests()
450 unsigned maxBits = FUZ_highbit((U32)srcSize); in fuzzerTests()
486 unsigned maxBits = FUZ_highbit((U32)cSize); in fuzzerTests()
506 XXH64_update(&xxh64, op, (U32)oSize); in fuzzerTests()
559 U32 seed=0; in main()