OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Rand
(Results
1 - 6
of
6
) 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
;
FuzzerDriver.cpp
642
Random
Rand
(Seed);
643
auto *MD = new MutationDispatcher(
Rand
, Options);
/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);
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp
49
Random
Rand
(0);
50
std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(
Rand
, {}));
137
Random
Rand
(0);
138
std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(
Rand
, {}));
173
Random
Rand
(0);
174
std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(
Rand
, {}));
209
Random
Rand
(0);
210
std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(
Rand
, {}));
253
Random
Rand
(0);
254
std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(
Rand
, {}));
[
all
...]
Completed in 13 milliseconds
Indexes created Sat Sep 20 22:09:52 GMT 2025