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

/external/compiler-rt/lib/asan/
H A Dasan_allocator2.cc156 uptr UsedSize(bool locked_version = false) { function in struct:__asan::AsanChunk
189 return (addr >= Beg()) && (addr < Beg() + UsedSize(locked_version));
197 uptr AsanChunkView::End() { return Beg() + UsedSize(); }
198 uptr AsanChunkView::UsedSize() { return chunk_->UsedSize(); } function in class:__asan::AsanChunkView
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...]
H A Dasan_allocator.h44 uptr UsedSize(); // Size requested by the user.
H A Dasan_report.cc454 str.append(" %zu-byte region [%p,%p)\n", chunk.UsedSize(),
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp100 void useSpace(uintptr_t* UsedSize, uintptr_t Size, unsigned Alignment) { argument
102 uintptr_t AlignedBegin = (*UsedSize + Alignment - 1) / Alignment * Alignment;
103 *UsedSize = AlignedBegin + AlignedSize;

Completed in 316 milliseconds