Lines Matching refs:PaddingSize
567 uint64_t PaddingSize = 0; in computeTotalAllocSize() local
569 PaddingSize += 4; in computeTotalAllocSize()
571 PaddingSize += getStubAlignment().value() - 1; in computeTotalAllocSize()
573 uint64_t SectionSize = DataSize + PaddingSize + StubBufSize; in computeTotalAllocSize()
807 unsigned PaddingSize = 0; in emitSection() local
827 PaddingSize = 4; in emitSection()
852 PaddingSize += getStubAlignment().value() - 1; in emitSection()
858 Allocate = DataSize + PaddingSize + StubBufSize; in emitSection()
883 if (PaddingSize != 0) { in emitSection()
884 memset(Addr + DataSize, 0, PaddingSize); in emitSection()
886 DataSize += PaddingSize; in emitSection()