Home
last modified time | relevance | path

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

/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_combined.h137 void *GetBlockBeginFastLocked(const void *p) { in GetBlockBeginFastLocked() function
140 return secondary_.GetBlockBeginFastLocked(p); in GetBlockBeginFastLocked()
H A Dsanitizer_allocator_secondary.h218 void *GetBlockBeginFastLocked(const void *ptr) { in GetBlockBeginFastLocked() function
/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp1082 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1)); in TEST()
1083 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size / 2)); in TEST()
1084 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size - 1)); in TEST()
1085 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 - 100)); in TEST()
1090 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p)); in TEST()
1092 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p)); in TEST()
/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp559 reinterpret_cast<uptr>(__hwasan::allocator.GetBlockBeginFastLocked(p)); in PointsIntoChunk()
575 void *block = __hwasan::allocator.GetBlockBeginFastLocked( in GetUserBegin()
/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp281 uptr chunk = reinterpret_cast<uptr>(allocator.GetBlockBeginFastLocked(p)); in PointsIntoChunk()
/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp841 allocator.GetBlockBeginFastLocked(reinterpret_cast<void *>(p)); in AllocationSize()