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