Home
last modified time | relevance | path

Searched refs:UsedSize (Results 1 – 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
HDasan_allocator.cpp115 uptr UsedSize(bool locked_version = false) { in UsedSize() function
131 return (addr >= Beg()) && (addr < Beg() + UsedSize(locked_version)); in AddrIsInside()
147 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY), in Recycle()
162 thread_stats.really_freed += m->UsedSize(); in Recycle()
304 uptr end = ac->Beg() + ac->UsedSize(true); in RePoisonChunk()
596 if (m->UsedSize() >= kChunkHeader2Size) { // Skip Header2 in user area. in QuarantineChunk()
597 uptr size_to_fill = m->UsedSize() - kChunkHeader2Size; in QuarantineChunk()
605 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY), in QuarantineChunk()
610 thread_stats.freed += m->UsedSize(); in QuarantineChunk()
617 m->UsedSize()); in QuarantineChunk()
[all …]
HDasan_memory_profile.cpp37 total_allocated_user_size_ += cv.UsedSize(); in ProcessChunk()
41 Insert(id, cv.UsedSize()); in ProcessChunk()
43 total_quarantined_user_size_ += cv.UsedSize(); in ProcessChunk()
HDasan_allocator.h59 uptr UsedSize() const; // Size requested by the user.
HDasan_descriptions.cpp122 descr->chunk_size = chunk.UsedSize(); in GetAccessToHeapChunkInformation()
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
HDhwasan_allocator.h71 uptr UsedSize() const; // Size requested by the user
HDhwasan_allocator.cpp61 return Beg() + UsedSize(); in End()
63 uptr HwasanChunkView::UsedSize() const { in UsedSize() function in __hwasan::HwasanChunkView
HDhwasan_report.cpp274 candidate == left ? "right" : "left", chunk.UsedSize(), in PrintAddressDescription()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86FrameLowering.cpp1561 unsigned UsedSize; in getWinEHFuncletFrameSize() local
1568 UsedSize = getPSPSlotOffsetFromSP(MF) + SlotSize; in getWinEHFuncletFrameSize()
1571 UsedSize = MF.getFrameInfo().getMaxCallFrameSize(); in getWinEHFuncletFrameSize()
1576 unsigned FrameSizeMinusRBP = alignTo(CSSize + UsedSize, getStackAlignment()); in getWinEHFuncletFrameSize()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaChecking.cpp518 llvm::APSInt UsedSize = Result.Val.getInt(); in checkFortifiedBuiltinMemoryFunction() local
520 if (UsedSize.ule(ObjectSize)) in checkFortifiedBuiltinMemoryFunction()
536 << UsedSize.toString(/*Radix=*/10)); in checkFortifiedBuiltinMemoryFunction()