Home
last modified time | relevance | path

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

/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator_primary64.h341 constexpr u64 kMaxCounterBits = sizeof(*buffer) * 8ULL; in PackedCounterArray() local
346 CHECK_LE(counter_size_bits, kMaxCounterBits); in PackedCounterArray()
348 counter_mask = ~0ULL >> (kMaxCounterBits - counter_size_bits); in PackedCounterArray()
350 uptr packing_ratio = kMaxCounterBits >> counter_size_bits_log; in PackedCounterArray()