HomeSort by: relevance | last modified time | path
    Searched refs:GetBlockBeginFastLocked (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_combined.h 143 void *GetBlockBeginFastLocked(void *p) {
146 return secondary_.GetBlockBeginFastLocked(p);
sanitizer_allocator_secondary.h 216 void *GetBlockBeginFastLocked(void *ptr) {
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 1013 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1));
1014 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size / 2));
1015 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 + size - 1));
1016 EXPECT_EQ(p1, a.GetBlockBeginFastLocked(p1 - 100));
1021 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p));
1023 EXPECT_EQ((void *)0, a.GetBlockBeginFastLocked(p));
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_allocator.cc 232 uptr chunk = reinterpret_cast<uptr>(allocator.GetBlockBeginFastLocked(p));
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.cc 125 return get_allocator().GetBlockBeginFastLocked(
727 allocator.GetBlockBeginFastLocked(reinterpret_cast<void *>(p));

Completed in 45 milliseconds