Home
last modified time | relevance | path

Searched refs:RandomState (Results 1 – 4 of 4) sorted by relevance

/freebsd-src/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dguarded_pool_allocator.cpp465 uint32_t RandomState = getThreadLocals()->RandomState; in getRandomUnsigned32()
466 RandomState ^= RandomState << 13; in getRandomUnsigned32()
467 RandomState ^= RandomState >> 17; in getRandomUnsigned32()
468 RandomState ^= RandomState << 5; in getRandomUnsigned32()
469 getThreadLocals()->RandomState = RandomState;
462 uint32_t RandomState = getThreadLocals()->RandomState; getRandomUnsigned32() local
[all...]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dguarded_pool_allocator_tls.h22 : RandomState(0xacd979ce), NextSampleCounter(0), RecursiveGuard(false) {} in ThreadLocalPackedVariables()
27 uint32_t RandomState; member
H A Dguarded_pool_allocator_posix.cpp41 getThreadLocals()->RandomState = in initPRNG()
H A Dguarded_pool_allocator_fuchsia.cpp20 _zx_cprng_draw(&getThreadLocals()->RandomState, sizeof(uint32_t)); in initPRNG()