Lines Matching refs:fileAlign
137 COFFheader32.OptionalHeader.SizeOfCode = fileAlign(codeSize); in emit()
138 …header32.OptionalHeader.SizeOfInitializedData = fileAlign(exportsSize) + fileAlign(relocSize) + fi… in emit()
155 COFFheader32.OptionalHeader.SizeOfHeaders = fileAlign(sizeof(DOSheader) + sizeof(COFFheader32)); in emit()
191 COFFheader64.OptionalHeader.SizeOfCode = fileAlign(codeSize); in emit()
192 …header64.OptionalHeader.SizeOfInitializedData = fileAlign(exportsSize) + fileAlign(relocSize) + fi… in emit()
208 COFFheader64.OptionalHeader.SizeOfHeaders = fileAlign(sizeof(DOSheader) + sizeof(COFFheader64)); in emit()
232 textSection.SizeOfRawData = fileAlign(codeSize); in emit()
233 …textSection.PointerToRawData = fileAlign(sizeof(DOSheader) + (AMD64 ? sizeof(COFFheader64) : sizeo… in emit()
246 exportsSection.SizeOfRawData = fileAlign(exportsSize); in emit()
247 exportsSection.PointerToRawData = textSection.PointerToRawData + fileAlign(codeSize); in emit()
259 relocSection.SizeOfRawData = fileAlign(relocSize); in emit()
260 relocSection.PointerToRawData = exportsSection.PointerToRawData + fileAlign(exportsSize); in emit()
273 constSection.SizeOfRawData = fileAlign(constSize); in emit()
274 constSection.PointerToRawData = relocSection.PointerToRawData + fileAlign(relocSize); in emit()
374 char *padding = new char[fileAlign(constSize) - constSize]; in emit()
375 fwrite(padding, 1, fileAlign(constSize) - constSize, file); in emit()