Searched refs:AdjustedSampleRatePlusOne (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/gnu/llvm/compiler-rt/lib/gwp_asan/
H A Dguarded_pool_allocator.h74 // AdjustedSampleRatePlusOne is designed to intentionally underflow. This
80 ((getRandomUnsigned32() % (AdjustedSampleRatePlusOne - 1)) + 1) &
230 uint32_t AdjustedSampleRatePlusOne = 0; member in class:gwp_asan::GuardedPoolAllocator
H A Dguarded_pool_allocator.cpp104 AdjustedSampleRatePlusOne = static_cast<uint32_t>(Opts.SampleRate) * 2 + 1;
106 AdjustedSampleRatePlusOne = 2;
110 ((getRandomUnsigned32() % (AdjustedSampleRatePlusOne - 1)) + 1) &
206 (AdjustedSampleRatePlusOne - 1) &

Completed in 283 milliseconds