Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp59 uint64_t NeededSize = DL.getTypeStoreSize(InstVal->getType()); in getBoundsCheckCond() local
60 LLVM_DEBUG(dbgs() << "Instrument " << *Ptr << " for " << Twine(NeededSize) in getBoundsCheckCond()
75 Value *NeededSizeVal = ConstantInt::get(IntTy, NeededSize); in getBoundsCheckCond()
/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dcombined.h344 const uptr NeededSize = variable
353 reportAllocationSizeTooBig(Size, NeededSize, MaxAllowedMallocSize);
355 DCHECK_LE(Size, NeededSize);
373 if (LIKELY(PrimaryT::canAllocate(NeededSize))) {
374 ClassId = SizeClassMap::getClassIdBySize(NeededSize);
399 reportOutOfMemory(NeededSize);
/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dcombined_test.cpp41 const scudo::uptr NeededSize = in isPrimaryAllocation() local
44 return AllocatorT::PrimaryT::canAllocate(NeededSize); in isPrimaryAllocation()