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

/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cc753 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1));
754 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size / 2));
755 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size - 1));
756 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 - 100));
761 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p));
763 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p));
/external/compiler-rt/lib/lsan/
H A Dlsan_allocator.cc139 uptr chunk = reinterpret_cast<uptr>(allocator.GetBlockBeginFastLocked(p));
/external/compiler-rt/lib/asan/
H A Dasan_allocator2.cc165 return allocator.GetBlockBeginFastLocked(
526 allocator.GetBlockBeginFastLocked(reinterpret_cast<void *>(p));
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h1121 void *GetBlockBeginFastLocked(void *ptr) { function in class:__sanitizer::LargeMmapAllocator
1317 void *GetBlockBeginFastLocked(void *p) { function in class:__sanitizer::CombinedAllocator
1320 return secondary_.GetBlockBeginFastLocked(p);

Completed in 298 milliseconds