Home | History | Annotate | Download | only in programs

Lines Matching refs:randState

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;
492 int missingBytes = (FUZ_rand(&randState) % 0x3F) + 1;
504 int missingBytes = (FUZ_rand(&randState) % 0x3F) + 1;
549 dict -= (FUZ_rand(&randState) & 0xF) + 1; // Separation, so it is an ExtDict
603 U32 missingBytes = (FUZ_rand(&randState) & 0xF) + 2;
615 dict -= (FUZ_rand(&randState) & 7); // even bigger separation
617 LZ4_resetStreamHC (&LZ4dictHC, FUZ_rand(&randState) & 0x7);
693 U32 randState = 1;
696 FUZ_fillCompressibleNoiseBuffer(testInput, testInputSize, 0.50, &randState);
732 U32 messageSize = (FUZ_rand(&randState) & maxMessageSizeMask) + 1;
763 messageSize = (FUZ_rand(&randState) & maxMessageSizeMask) + 1;
844 int dictSize = (FUZ_rand(&randState) & 8191);
848 int segSize = (FUZ_rand(&randState) & 8191);
883 segStart += segSize + (FUZ_rand(&randState) & 0xF) + 1;
884 segSize = (FUZ_rand(&randState) & 8191);
895 U32 messageSize = (FUZ_rand(&randState) & maxMessageSizeMask) + 1;
926 messageSize = (FUZ_rand(&randState) & maxMessageSizeMask) + 1;
939 U32 messageSize = (FUZ_rand(&randState) & maxMessageSizeMask) + 1;
968 messageSize = (FUZ_rand(&randState) & maxMessageSizeMask) + 1;
969 iNext = (FUZ_rand(&randState) & 65535);
993 size_t testSize = (FUZ_rand(&randState) & 65535) + 1;
994 size_t testStart = FUZ_rand(&randState) & 65535;