Searched refs:TwoLevelByteMap (Results 1 - 7 of 7) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_allocator_internal.h | 36 typedef TwoLevelByteMap<(kInternalAllocatorNumRegions >> 12), 1 << 12> ByteMap; typedef in namespace:__sanitizer
|
H A D | sanitizer_allocator.h | 600 // TwoLevelByteMap maps integers in range [0, kSize1*kSize2) to u8 values. 606 class TwoLevelByteMap { class in namespace:__sanitizer 652 res = (u8*)MmapOrDie(kSize2, "TwoLevelByteMap");
|
/external/compiler-rt/lib/msan/ |
H A D | msan_allocator.cc | 46 typedef TwoLevelByteMap<(kNumRegions >> 12), 1 << 12> ByteMap; typedef in namespace:__msan 80 typedef TwoLevelByteMap<(kNumRegions >> 12), 1 << 12> ByteMap; typedef in namespace:__msan
|
/external/compiler-rt/lib/asan/ |
H A D | asan_allocator.h | 135 typedef TwoLevelByteMap<(kNumRegions >> 12), 1 << 12> ByteMap; typedef in namespace:__asan
|
/external/compiler-rt/lib/lsan/ |
H A D | lsan_allocator.cc | 39 typedef TwoLevelByteMap<(kNumRegions >> 12), 1 << 12> ByteMap; typedef in namespace:__lsan
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
H A D | sanitizer_allocator_test.cc | 801 TEST(SanitizerCommon, TwoLevelByteMap) { 804 TwoLevelByteMap<kSize1, kSize2> m; 820 typedef TwoLevelByteMap<1 << 12, 1 << 13, TestMapUnmapCallback> TestByteMap;
|
/external/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_rtl.h | 63 typedef TwoLevelByteMap<(kAllocatorNumRegions >> 12), 1 << 12, typedef in namespace:__tsan
|
Completed in 125 milliseconds