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

  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 118 CHECK_EQ(x, a->GetBlockBegin(x));
119 CHECK_EQ(x, a->GetBlockBegin(x + size - 1));
146 // Check that GetBlockBegin never crashes.
150 Ident(a->GetBlockBegin(reinterpret_cast<void *>(x)));
224 // Make sure we correctly compute GetBlockBegin() w/o overflow.
227 void *beg = a->GetBlockBegin(x);
400 CHECK_EQ(p, a.GetBlockBegin(p));
401 CHECK_EQ(p, a.GetBlockBegin(p + size - 1));
402 CHECK_EQ(p, a.GetBlockBegin(p + size / 2));
411 // Regression test for boundary condition in GetBlockBegin()
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 385 void *GetBlockBegin(const void *p) {
477 // Too slow: CHECK_EQ((void *)chunk, GetBlockBegin((void *)chunk));
783 void *GetBlockBegin(const void *p) {
841 // Too slow: CHECK_EQ((void *)chunk, GetBlockBegin((void *)chunk));
    [all...]
  /external/compiler-rt/lib/lsan/
lsan_allocator.cc 204 void *chunk = allocator.GetBlockBegin(p);
  /external/compiler-rt/lib/msan/
msan_allocator.cc 214 const void *beg = allocator.GetBlockBegin(p);
  /external/compiler-rt/lib/tsan/rtl/
tsan_mman.cc 290 return allocator()->GetBlockBegin(p) != 0;
tsan_rtl_report.cc 326 void *block_begin = a->GetBlockBegin((void*)addr);
333 loc->heap_chunk_start = (uptr)allocator()->GetBlockBegin((void *)addr);
  /external/compiler-rt/lib/asan/
asan_allocator.cc 122 return get_allocator().GetBlockBegin(reinterpret_cast<void *>(this));
590 // Assumes alloc_beg == allocator.GetBlockBegin(alloc_beg).
605 void *alloc_beg = allocator.GetBlockBegin(reinterpret_cast<void *>(p));

Completed in 456 milliseconds