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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp61 uint64_t NeededSize = DL.getTypeStoreSize(InstVal->getType()); local
62 LLVM_DEBUG(dbgs() << "Instrument " << *Ptr << " for " << Twine(NeededSize)
77 Value *NeededSizeVal = ConstantInt::get(IntTy, NeededSize);
86 // . Size - Offset >= NeededSize (unsigned)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h225 const uptr NeededSize = local
234 reportAllocationSizeTooBig(Size, NeededSize, MaxAllowedMallocSize);
236 DCHECK_LE(Size, NeededSize);
241 if (LIKELY(PrimaryT::canAllocate(NeededSize))) {
242 ClassId = SizeClassMap::getClassIdBySize(NeededSize);
252 Secondary.allocate(NeededSize, Alignment, &BlockEnd, ZeroContents);
258 reportOutOfMemory(NeededSize);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp320 const uptr NeededSize = RoundUpTo(Size ? Size : 1, MinAlignment) + local
323 NeededSize + (Alignment - Chunk::getHeaderSize()) : NeededSize;
352 BackendSize = NeededSize;

Completed in 121 milliseconds