Lines Matching refs:seed
146 rand_next (unsigned long long *seed) in rand_next() argument
149 *seed = *seed * 6364136223846793005ULL + 1442695040888963407ULL; in rand_next()
150 return *seed >> 32; in rand_next()
157 unsigned long long seed) in randomize_buffer() argument
160 buffer[i] = rand_next (&seed); in randomize_buffer()
179 unsigned int seed; member
191 size, index, alloc->seed); in check_allocation()
200 size, index, alloc->seed); in check_allocation()
204 randomize_buffer (expected, size, alloc->seed); in check_allocation()
208 index, size, alloc->seed); in check_allocation()
259 .seed = i, in initial_allocations()
273 task->allocation.seed); in initial_allocations()
332 alloc->seed = heap_activity_seed_counter++; in heap_activity()
333 randomize_buffer (alloc->data, alloc->size, alloc->seed); in heap_activity()