Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Instrumentation/
DBoundsChecking.cpp128 uint64_t NeededSize = DL.getTypeStoreSize(InstVal->getType()); in instrument() local
129 DEBUG(dbgs() << "Instrument " << *Ptr << " for " << Twine(NeededSize) in instrument()
144 Value *NeededSizeVal = ConstantInt::get(IntTy, NeededSize); in instrument()
/external/compiler-rt/lib/scudo/
Dscudo_allocator.cpp335 uptr NeededSize = RoundedSize + ExtraBytes; in allocate() local
336 if (NeededSize >= MaxAllowedMallocSize) in allocate()
341 Ptr = BackendAllocator.Allocate(&Cache, NeededSize, MinAlignment); in allocate()
344 Ptr = BackendAllocator.Allocate(&FallbackAllocatorCache, NeededSize, in allocate()
358 CHECK_LE(ChunkBeg + Size, AllocBeg + NeededSize); in allocate()