Searched defs:UsedSize (Results 1 - 2 of 2) sorted by relevance

/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;
/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...]

Completed in 167 milliseconds