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

/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_combined.h137 void *GetBlockBeginFastLocked(const void *p) { function in class:CombinedAllocator
140 return secondary_.GetBlockBeginFastLocked(p);
H A Dsanitizer_allocator_secondary.h218 void *GetBlockBeginFastLocked(const void *ptr) { function in class:LargeMmapAllocator
/openbsd-current/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp508 reinterpret_cast<uptr>(__hwasan::allocator.GetBlockBeginFastLocked(p));
525 void *block = __hwasan::allocator.GetBlockBeginFastLocked(
580 reinterpret_cast<uptr>(__hwasan::allocator.GetBlockBeginFastLocked(p));
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp1070 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1));
1071 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size / 2));
1072 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size - 1));
1073 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 - 100));
1078 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p));
1080 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p));
/openbsd-current/gnu/llvm/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp258 uptr chunk = reinterpret_cast<uptr>(allocator.GetBlockBeginFastLocked(p));
/openbsd-current/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_allocator.cpp788 allocator.GetBlockBeginFastLocked(reinterpret_cast<void *>(p));

Completed in 98 milliseconds