HomeSort by relevance Sort by last modified time
    Searched full:randstate (Results 1 - 9 of 9) sorted by null

  /external/lz4/tests/
frametest.c 174 U32 randState = seed;
186 FUZ_fillCompressibleNoiseBuffer(CNBuffer, COMPRESSIBLE_NOISE_LENGTH, compressibility, &randState);
355 unsigned const nbBits = FUZ_rand(&randState) % maxBits;
356 size_t iSize = (FUZ_rand(&randState) & ((1<<nbBits)-1)) + 1;
480 unsigned nbBits = FUZ_rand(&randState) % maxBits;
481 size_t iSize = (FUZ_rand(&randState) & ((1<<nbBits)-1)) + 1;
500 unsigned nbBits = FUZ_rand(&randState) % maxBits;
501 size_t iSize = (FUZ_rand(&randState) & ((1<<nbBits)-1)) + 1;
595 U32 randState = coreRand ^ prime1;
596 unsigned const srcBits = (FUZ_rand(&randState) % (FUZ_highbit((U32)(srcDataLength-1)) - 1)) + 1
    [all...]
fuzzer.c 288 { U32 randState = coreRandState ^ PRIME3;
289 FUZ_fillCompressibleNoiseBuffer(CNBuffer, COMPRESSIBLE_NOISE_LENGTH, compressibility, &randState);
301 U32 randState = FUZ_rand(&coreRandState) ^ PRIME3;
302 int const blockSize = (FUZ_rand(&randState) % (FUZ_MAX_BLOCK_SIZE-1)) + 1;
303 int const blockStart = FUZ_rand(&randState) % (COMPRESSIBLE_NOISE_LENGTH - blockSize);
304 int const dictSizeRand = FUZ_rand(&randState) % FUZ_MAX_DICT_SIZE;
306 int const compressionLevel = FUZ_rand(&randState) % (LZ4HC_CLEVEL_MAX+1);
322 int const targetSize = srcSize * ((FUZ_rand(&randState) & 127)+1) >> 7;
323 char endCheck = FUZ_rand(&randState) & 255;
333 char const canary = FUZ_rand(&randState) & 255
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
vlop_arm_test.go 19 type randstate struct { type
23 func (r *randstate) rand() uint32 {
32 random := &randstate{2147483563, 2147483563 ^ 0x49616E42}
  /prebuilts/go/linux-x86/src/runtime/
vlop_arm_test.go 19 type randstate struct { type
23 func (r *randstate) rand() uint32 {
32 random := &randstate{2147483563, 2147483563 ^ 0x49616E42}
  /external/linux-kselftest/tools/testing/selftests/vm/
userfaultfd.c 217 char randstate[64]; local
226 bzero(&randstate, sizeof(randstate));
227 if (initstate_r(seed, randstate, sizeof(randstate), &rand))
  /external/libopus/silk/mips/
NSQ_del_dec_mipsr1.h 340 Winner_rand_state = psDelDec[ Winner_ind ].RandState[ last_smple_idx ];
342 if( psDelDec[ k ].RandState[ last_smple_idx ] != Winner_rand_state ) {
397 psDD->RandState[ *smpl_buf_idx ] = psDD->Seed;
  /external/boringssl/src/crypto/
thread_test.cc 185 TEST(ThreadTest, RandState) {
  /external/libopus/silk/
NSQ_del_dec.c 39 opus_int32 RandState[ DECISION_DELAY ];
559 Winner_rand_state = psDelDec[ Winner_ind ].RandState[ last_smple_idx ];
561 if( psDelDec[ k ].RandState[ last_smple_idx ] != Winner_rand_state ) {
    [all...]
  /external/libopus/silk/x86/
NSQ_del_dec_sse.c 42 opus_int32 RandState[ DECISION_DELAY ];
    [all...]

Completed in 181 milliseconds