Searched defs:seed (Results 1 - 13 of 13) sorted by relevance

/art/runtime/
H A Dmonitor_pool_test.cc29 explicit RandGen(uint32_t seed) : val_(seed) {} argument
/art/tools/dexfuzz/src/dexfuzz/listeners/
H A DBisectionSearchListener.java36 * Used to remember the seed used to fuzz the fuzzed file, so we can save it with this
37 * seed as a name, if we find a divergence.
48 public void handleSeed(long seed) { argument
49 currentSeed = seed;
H A DUniqueProgramTrackerListener.java51 * Used to remember the seed used to fuzz the fuzzed file, so we can save it with this
52 * seed as a name, if we find a divergence.
75 public void handleSeed(long seed) { argument
76 currentSeed = seed;
H A DBaseListener.java50 public void handleSeed(long seed) { } argument
H A DConsoleLoggerListener.java105 public void handleSeed(long seed) { argument
106 logToConsole("Seed: " + seed);
H A DLogFileListener.java156 public void handleSeed(long seed) { argument
157 write("Using " + seed + " for seed.");
158 // Flush the seed as well, so if anything goes wrong we can see what seed lead
H A DMultiplexerListener.java109 public void handleSeed(long seed) { argument
111 listener.handleSeed(seed);
/art/runtime/arch/
H A Dmemcmp16_test.cc23 explicit RandGen(uint32_t seed) : val_(seed) {} argument
H A Dstub_test.cc644 explicit RandGen(uint32_t seed) : val_(seed) {} argument
/art/runtime/gc/accounting/
H A Dspace_bitmap_test.cc146 explicit RandGen(uint32_t seed) : val_(seed) {} argument
/art/libartbase/base/
H A Dhash_set_test.cc53 void SetSeed(size_t seed) { argument
54 seed_ = seed;
227 const size_t seed = time(nullptr); local
228 SetSeed(seed);
229 LOG(INFO) << "Starting stress test with seed " << seed;
/art/runtime/gc/space/
H A Dspace_test.h135 static inline size_t test_rand(size_t* seed) { argument
136 *seed = *seed * 1103515245 + 12345;
137 return *seed;
/art/tools/jfuzz/
H A Djfuzz.cc64 * fuzzed program for a deterministic random seed.
93 uint32_t seed,
100 fuzz_random_engine_(seed),
101 fuzz_seed_(seed),
1303 // Time-based seed.
1308 uint32_t seed = (tp.tv_sec * 1000000 + tp.tv_usec); local
1323 seed = strtoul(optarg, nullptr, 0); // deterministic seed
1346 "usage: %s [-s seed] "
1355 srand(seed);
92 JFuzz(FILE* out, uint32_t seed, uint32_t expr_depth, uint32_t stmt_length, uint32_t if_nest, uint32_t loop_nest, uint32_t try_nest) argument
[all...]

Completed in 204 milliseconds