Searched refs:NeededSize (Results 1 - 2 of 2) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp60 TypeSize NeededSize = DL.getTypeStoreSize(InstVal->getType()); local
61 LLVM_DEBUG(dbgs() << "Instrument " << *Ptr << " for " << Twine(NeededSize)
76 Value *NeededSizeVal = IRB.CreateTypeSize(IndexTy, NeededSize);
85 // . Size - Offset >= NeededSize (unsigned)
/freebsd-current/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h348 const uptr NeededSize = variable
357 reportAllocationSizeTooBig(Size, NeededSize, MaxAllowedMallocSize);
359 DCHECK_LE(Size, NeededSize);
364 if (LIKELY(PrimaryT::canAllocate(NeededSize))) {
365 ClassId = SizeClassMap::getClassIdBySize(NeededSize);
392 reportOutOfMemory(NeededSize); variable

Completed in 108 milliseconds