HomeSort by: relevance | last modified time | path
    Searched defs:Rand (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerRandom.h 22 size_t Rand() { return this->operator()(); }
23 size_t RandBool() { return Rand() % 2; }
24 size_t operator()(size_t n) { return n ? Rand() % n : 0; }
FuzzerMutate.h 24 MutationDispatcher(Random &Rand, const FuzzingOptions &Options);
94 Random &GetRand() { return Rand; }
125 Random &Rand;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator.h 56 INLINE u32 Rand(u32 *state) { // ANSI C linear congruential PRNG.
60 INLINE u32 RandN(u32 *state, u32 n) { return Rand(state) % n; } // [0, n)
  /src/tests/crypto/libcrypto/bn/div/
divtest.c 2 #include <openssl/rand.h>
4 static int Rand(void)
32 BN_rand(a, Rand(), 0, 0);
33 BN_rand(b, Rand(), 0, 0);

Completed in 25 milliseconds