Lines Matching refs:PaddingSize
560 uint64_t PaddingSize = 0; in computeTotalAllocSize() local
562 PaddingSize += 4; in computeTotalAllocSize()
564 PaddingSize += getStubAlignment() - 1; in computeTotalAllocSize()
566 uint64_t SectionSize = DataSize + PaddingSize + StubBufSize; in computeTotalAllocSize()
797 unsigned PaddingSize = 0; in emitSection() local
821 PaddingSize = 4; in emitSection()
845 PaddingSize += getStubAlignment() - 1; in emitSection()
851 Allocate = DataSize + PaddingSize + StubBufSize; in emitSection()
868 if (PaddingSize != 0) { in emitSection()
869 memset(Addr + DataSize, 0, PaddingSize); in emitSection()
871 DataSize += PaddingSize; in emitSection()