HomeSort by relevance Sort by last modified time
    Searched refs:randState (Results 1 - 2 of 2) sorted by null

  /external/lz4/programs/
frametest.c 204 U32 randState = seed;
214 FUZ_fillCompressibleNoiseBuffer(CNBuffer, COMPRESSIBLE_NOISE_LENGTH, compressibility, &randState);
298 unsigned nbBits = FUZ_rand(&randState) % maxBits;
299 size_t iSize = (FUZ_rand(&randState) & ((1<<nbBits)-1)) + 1;
413 U32 randState = coreRand ^ prime1;
414 unsigned BSId = 4 + (FUZ_rand(&randState) & 3);
415 unsigned BMId = FUZ_rand(&randState) & 1;
416 unsigned CCflag = FUZ_rand(&randState) & 1;
417 unsigned autoflush = (FUZ_rand(&randState) & 7) == 2;
421 unsigned nbBits = (FUZ_rand(&randState) % (FUZ_highbit(srcDataLength-1) - 1)) + 1
    [all...]
fuzzer.c 298 U32 randState = coreRandState ^ PRIME3;
306 FUZ_fillCompressibleNoiseBuffer(CNBuffer, COMPRESSIBLE_NOISE_LENGTH, compressibility, &randState);
321 randState = coreRandState ^ PRIME3;
322 blockSize = FUZ_rand(&randState) % FUZ_MAX_BLOCK_SIZE;
323 blockStart = FUZ_rand(&randState) % (COMPRESSIBLE_NOISE_LENGTH - blockSize);
324 dictSize = FUZ_rand(&randState) % FUZ_MAX_DICT_SIZE;
348 randState = coreRandState ^ PRIME3;
351 blockSize = FUZ_rand(&randState) % FUZ_MAX_BLOCK_SIZE;
352 blockStart = FUZ_rand(&randState) % (COMPRESSIBLE_NOISE_LENGTH - blockSize);
353 dictSize = FUZ_rand(&randState) % FUZ_MAX_DICT_SIZE
    [all...]

Completed in 65 milliseconds