Home
last modified time | relevance | path

Searched refs:FuzzerRandomLibc (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/Fuzzer/
DFuzzerInterface.cpp18 void FuzzerRandomLibc::ResetSeed(unsigned int seed) { srand(seed); } in ResetSeed()
20 size_t FuzzerRandomLibc::Rand() { return rand(); } in Rand()
DFuzzerInterface.h62 class FuzzerRandomLibc : public FuzzerRandomBase {
64 FuzzerRandomLibc(unsigned int seed) { ResetSeed(seed); } in FuzzerRandomLibc() function
66 ~FuzzerRandomLibc() override {} in ~FuzzerRandomLibc()
DFuzzerDriver.cpp210 FuzzerRandomLibc Rand(0); in FuzzerDriver()
221 FuzzerRandomLibc Rand(0); in FuzzerDriver()
/external/llvm/lib/Fuzzer/test/
DFuzzerUnittest.cpp14 FuzzerRandomLibc Rand(0); in TEST()
90 FuzzerRandomLibc Rand(0); in TestEraseByte()
116 FuzzerRandomLibc Rand(0); in TestInsertByte()
150 FuzzerRandomLibc Rand(0); in TestChangeByte()
184 FuzzerRandomLibc Rand(0); in TestChangeBit()
218 FuzzerRandomLibc Rand(0); in TestShuffleBytes()
246 FuzzerRandomLibc Rand(0); in TestAddWordFromDictionary()
286 FuzzerRandomLibc Rand(0); in TestChangeASCIIInteger()
DUserSuppliedFuzzerTest.cpp48 fuzzer::FuzzerRandomLibc Rand(0); in main()