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

  /external/compiler-rt/lib/asan/
asan_allocator2.cc 156 uptr UsedSize(bool locked_version = false) {
189 return (addr >= Beg()) && (addr < Beg() + UsedSize(locked_version));
197 uptr AsanChunkView::End() { return Beg() + UsedSize(); }
198 uptr AsanChunkView::UsedSize() { return chunk_->UsedSize(); }
243 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
258 thread_stats.really_freed += m->UsedSize();
446 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
451 thread_stats.freed += m->UsedSize();
458 m, m->UsedSize());
    [all...]
asan_allocator.h 44 uptr UsedSize(); // Size requested by the user.
asan_report.cc 454 str.append(" %zu-byte region [%p,%p)\n", chunk.UsedSize(),
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 100 void useSpace(uintptr_t* UsedSize, uintptr_t Size, unsigned Alignment) {
102 uintptr_t AlignedBegin = (*UsedSize + Alignment - 1) / Alignment * Alignment;
103 *UsedSize = AlignedBegin + AlignedSize;

Completed in 81 milliseconds