Searched refs:GetBlockBeginFastLocked (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_allocator_combined.h | 139 void *GetBlockBeginFastLocked(void *p) { in GetBlockBeginFastLocked() function 142 return secondary_.GetBlockBeginFastLocked(p); in GetBlockBeginFastLocked()
|
D | sanitizer_allocator_secondary.h | 218 void *GetBlockBeginFastLocked(void *ptr) { in GetBlockBeginFastLocked() function
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_allocator_test.cc | 761 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1)); in TEST() 762 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size / 2)); in TEST() 763 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size - 1)); in TEST() 764 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 - 100)); in TEST() 769 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p)); in TEST() 771 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p)); in TEST()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_allocator_test.cpp | 998 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1)); in TEST() 999 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size / 2)); in TEST() 1000 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size - 1)); in TEST() 1001 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 - 100)); in TEST() 1006 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p)); in TEST() 1008 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p)); in TEST()
|
/external/compiler-rt/lib/lsan/ |
D | lsan_allocator.cc | 154 uptr chunk = reinterpret_cast<uptr>(allocator.GetBlockBeginFastLocked(p)); in PointsIntoChunk()
|
/external/llvm-project/compiler-rt/lib/lsan/ |
D | lsan_allocator.cpp | 249 uptr chunk = reinterpret_cast<uptr>(allocator.GetBlockBeginFastLocked(p)); in PointsIntoChunk()
|
/external/compiler-rt/lib/asan/ |
D | asan_allocator.cc | 120 return get_allocator().GetBlockBeginFastLocked( in AllocBeg() 612 allocator.GetBlockBeginFastLocked(reinterpret_cast<void *>(p)); in GetAsanChunkByAddrFastLocked()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_allocator.h | 1174 void *GetBlockBeginFastLocked(void *ptr) { in GetBlockBeginFastLocked() function 1408 void *GetBlockBeginFastLocked(void *p) { in GetBlockBeginFastLocked() function 1411 return secondary_.GetBlockBeginFastLocked(p); in GetBlockBeginFastLocked()
|
/external/llvm-project/compiler-rt/lib/asan/ |
D | asan_allocator.cpp | 800 allocator.GetBlockBeginFastLocked(reinterpret_cast<void *>(p)); in GetAsanChunkByAddrFastLocked()
|