Lines Matching refs:PaddingSize
570 uint64_t PaddingSize = 0; in computeTotalAllocSize() local
572 PaddingSize += 4; in computeTotalAllocSize()
574 PaddingSize += getStubAlignment() - 1; in computeTotalAllocSize()
576 uint64_t SectionSize = DataSize + PaddingSize + StubBufSize; in computeTotalAllocSize()
807 unsigned PaddingSize = 0; in emitSection() local
832 PaddingSize = 4; in emitSection()
857 PaddingSize += getStubAlignment() - 1; in emitSection()
863 Allocate = DataSize + PaddingSize + StubBufSize; in emitSection()
887 if (PaddingSize != 0) { in emitSection()
888 memset(Addr + DataSize, 0, PaddingSize); in emitSection()
890 DataSize += PaddingSize; in emitSection()