Home
last modified time | relevance | path

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

/NextBSD/contrib/compiler-rt/lib/asan/tests/
HDasan_noinst_test.cc246 for (uptr size_log = 0; size_log <= 4; size_log++) { in TEST() local
247 uptr size = 1 << size_log; in TEST()
248 CB call = cb[is_write][size_log]; in TEST()
/NextBSD/contrib/compiler-rt/lib/tsan/rtl/
HDtsan_rtl.h191 DCHECK_EQ(kAccessSizeLog, size_log()); in SetAddr0AndSizeLog()
248 u64 ALWAYS_INLINE size() const { return 1ull << size_log(); } in size()
304 u64 size_log() const { return (x_ >> (3 + kClkBits)) & 3; } in size_log() function
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/
HDsanitizer_allocator.h1043 uptr size_log = MostSignificantSetBitIndex(map_size); in Allocate() local
1044 CHECK_LT(size_log, ARRAY_SIZE(stats.by_size_log)); in Allocate()
1055 stats.by_size_log[size_log]++; in Allocate()