Lines Matching defs:TempSec
110 SectionType TempSec;
111 memcpy(reinterpret_cast<void *>(&TempSec.sectname[0]), &Sec.sectname[0], 16);
112 memcpy(reinterpret_cast<void *>(&TempSec.segname[0]), &Sec.segname[0], 16);
113 TempSec.addr = Sec.addr;
114 TempSec.size = Sec.size;
115 TempSec.offset = Sec.offset;
116 TempSec.align = Sec.align;
117 TempSec.reloff = Sec.reloff;
118 TempSec.nreloc = Sec.nreloc;
119 TempSec.flags = Sec.flags;
120 TempSec.reserved1 = Sec.reserved1;
121 TempSec.reserved2 = Sec.reserved2;
122 return TempSec;
137 auto TempSec = constructSection<MachO::section>(Sec);
139 MachO::swapStruct(TempSec);
140 OS.write(reinterpret_cast<const char *>(&(TempSec)),
152 auto TempSec = constructSection<MachO::section_64>(Sec);
153 TempSec.reserved3 = Sec.reserved3;
155 MachO::swapStruct(TempSec);
156 OS.write(reinterpret_cast<const char *>(&(TempSec)),