Lines Matching refs:Temp
216 StructType Temp; in writeSectionInLoadCommand() local
217 assert(Sec.Segname.size() <= sizeof(Temp.segname) && "too long segment name"); in writeSectionInLoadCommand()
218 assert(Sec.Sectname.size() <= sizeof(Temp.sectname) && in writeSectionInLoadCommand()
220 memset(&Temp, 0, sizeof(StructType)); in writeSectionInLoadCommand()
221 memcpy(Temp.segname, Sec.Segname.data(), Sec.Segname.size()); in writeSectionInLoadCommand()
222 memcpy(Temp.sectname, Sec.Sectname.data(), Sec.Sectname.size()); in writeSectionInLoadCommand()
223 Temp.addr = Sec.Addr; in writeSectionInLoadCommand()
224 Temp.size = Sec.Size; in writeSectionInLoadCommand()
225 Temp.offset = Sec.Offset; in writeSectionInLoadCommand()
226 Temp.align = Sec.Align; in writeSectionInLoadCommand()
227 Temp.reloff = Sec.RelOff; in writeSectionInLoadCommand()
228 Temp.nreloc = Sec.NReloc; in writeSectionInLoadCommand()
229 Temp.flags = Sec.Flags; in writeSectionInLoadCommand()
230 Temp.reserved1 = Sec.Reserved1; in writeSectionInLoadCommand()
231 Temp.reserved2 = Sec.Reserved2; in writeSectionInLoadCommand()
234 MachO::swapStruct(Temp); in writeSectionInLoadCommand()
235 memcpy(Out, &Temp, sizeof(StructType)); in writeSectionInLoadCommand()