Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp1070 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1)); in TEST()
1071 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size / 2)); in TEST()
1072 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size - 1)); in TEST()
1073 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 - 100)); in TEST()
1078 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p)); in TEST()
1080 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p)); in TEST()
/openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp508 reinterpret_cast<uptr>(__hwasan::allocator.GetBlockBeginFastLocked(p)); in PointsIntoChunk()
525 void *block = __hwasan::allocator.GetBlockBeginFastLocked( in GetUserBegin()
580 reinterpret_cast<uptr>(__hwasan::allocator.GetBlockBeginFastLocked(p)); in IgnoreObjectLocked()
/openbsd-src/gnu/llvm/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp258 uptr chunk = reinterpret_cast<uptr>(allocator.GetBlockBeginFastLocked(p)); in PointsIntoChunk()
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_allocator.cpp788 allocator.GetBlockBeginFastLocked(reinterpret_cast<void *>(p)); in GetAsanChunkByAddrFastLocked()