Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dguarded_pool_allocator.cpp89 AdjustedSampleRatePlusOne = static_cast<uint32_t>(Opts.SampleRate) * 2 + 1; in init()
91 AdjustedSampleRatePlusOne = 2; in init()
95 ((getRandomUnsigned32() % (AdjustedSampleRatePlusOne - 1)) + 1) & in init()
191 (AdjustedSampleRatePlusOne - 1) & in allocate()
H A Dguarded_pool_allocator.h85 ((getRandomUnsigned32() % (AdjustedSampleRatePlusOne - 1)) + 1) & in shouldSample()
229 uint32_t AdjustedSampleRatePlusOne = 0; variable