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

/freebsd-13-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-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h278 const uptr NeededSize = local
287 reportAllocationSizeTooBig(Size, NeededSize, MaxAllowedMallocSize);
289 DCHECK_LE(Size, NeededSize);
294 if (LIKELY(PrimaryT::canAllocate(NeededSize))) {
295 ClassId = SizeClassMap::getClassIdBySize(NeededSize);
319 Block = Secondary.allocate(NeededSize, Alignment, &SecondaryBlockEnd,
325 reportOutOfMemory(NeededSize);
/freebsd-13-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 112 milliseconds