Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp40 static u32 RZLog2Size(u32 rz_log) { in RZLog2Size() argument
41 CHECK_LT(rz_log, 8); in RZLog2Size()
42 return 16 << rz_log; in RZLog2Size()
457 u32 rz_log = user_requested_size <= 64 - 16 ? 0 in ComputeRZLog() local
468 return Min(Max(rz_log, Max(min_log, hdr_log)), Max(max_log, hdr_log)); in ComputeRZLog()
554 uptr rz_log = ComputeRZLog(size); in Allocate() local
555 uptr rz_size = RZLog2Size(rz_log); in Allocate()