HomeSort by: relevance | last modified time | path
    Searched refs:rand_state (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator.h 63 INLINE void RandomShuffle(T *a, u32 n, u32 *rand_state) {
65 u32 state = *rand_state;
68 *rand_state = state;
sanitizer_allocator_primary32.h 272 u32 rand_state; local in function:SizeClassAllocator32::ALIGNED
310 RandomShuffle(pointers_array, count, &sci->rand_state);
335 if (UNLIKELY(sci->rand_state == 0))
337 sci->rand_state = reinterpret_cast<uptr>(sci) ^ NanoTime();
sanitizer_allocator_primary64.h 604 u32 rand_state; // Seed for random shuffle, used if kRandomShuffleChunks. local in function:SizeClassAllocator64::ALIGNED
700 region->rand_state = static_cast<u32>(region_beg >> 12);
753 &region->rand_state);

Completed in 161 milliseconds