Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DAllocator.h228 size_t PaddedSize = Size + Alignment - 1; in Allocate() local
229 if (PaddedSize > SizeThreshold) { in Allocate()
230 void *NewSlab = Allocator.Allocate(PaddedSize, 0); in Allocate()
231 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize)); in Allocate()
234 assert(AlignedAddr + Size <= (uintptr_t)NewSlab + PaddedSize); in Allocate()
/external/clang/lib/CodeGen/
DTargetInfo.cpp5282 unsigned PaddedSize = PaddedBitSize / 8; in EmitVAArg() local
5315 llvm::Value *PaddedSizeV = llvm::ConstantInt::get(IndexTy, PaddedSize); in EmitVAArg()
5319 llvm::ConstantInt::get(IndexTy, RegSaveIndex * PaddedSize + RegPadding); in EmitVAArg()