HomeSort by relevance Sort by last modified time
    Searched refs:GetBlockBegin (Results 1 - 5 of 5) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_mman.cc 169 void *b = a->GetBlockBegin(p);
244 return allocator()->GetBlockBegin(p) != 0;
250 p = allocator()->GetBlockBegin(p);
tsan_rtl_report.cc 321 loc->addr = (uptr)allocator()->GetBlockBegin((void*)addr);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 91 CHECK_EQ(x, a->GetBlockBegin(x));
92 CHECK_EQ(x, a->GetBlockBegin(x + size - 1));
119 // Check that GetBlockBegin never crashes.
123 Ident(a->GetBlockBegin(reinterpret_cast<void *>(x)));
330 CHECK_EQ(p, a.GetBlockBegin(p));
331 CHECK_EQ(p, a.GetBlockBegin(p + size - 1));
332 CHECK_EQ(p, a.GetBlockBegin(p + size / 2));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 355 void *GetBlockBegin(void *p) {
448 // Too slow: CHECK_EQ((void *)p, GetBlockBegin((void *)p));
654 void *GetBlockBegin(void *p) {
715 // Too slow: CHECK_EQ((void *)p, GetBlockBegin((void *)p));
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator2.cc 190 return allocator.GetBlockBegin(reinterpret_cast<void *>(this));
497 uptr alloc_beg = reinterpret_cast<uptr>(allocator.GetBlockBegin(ptr));

Completed in 191 milliseconds