Lines Matching refs:TempSec
80 MachOYAML::Section TempSec; in constructSectionCommon() local
81 memcpy(reinterpret_cast<void *>(&TempSec.sectname[0]), &Sec.sectname[0], 16); in constructSectionCommon()
82 memcpy(reinterpret_cast<void *>(&TempSec.segname[0]), &Sec.segname[0], 16); in constructSectionCommon()
83 TempSec.addr = Sec.addr; in constructSectionCommon()
84 TempSec.size = Sec.size; in constructSectionCommon()
85 TempSec.offset = Sec.offset; in constructSectionCommon()
86 TempSec.align = Sec.align; in constructSectionCommon()
87 TempSec.reloff = Sec.reloff; in constructSectionCommon()
88 TempSec.nreloc = Sec.nreloc; in constructSectionCommon()
89 TempSec.flags = Sec.flags; in constructSectionCommon()
90 TempSec.reserved1 = Sec.reserved1; in constructSectionCommon()
91 TempSec.reserved2 = Sec.reserved2; in constructSectionCommon()
92 TempSec.reserved3 = 0; in constructSectionCommon()
94 TempSec.content = in constructSectionCommon()
98 TempSec.relocations.reserve(TempSec.nreloc); in constructSectionCommon()
112 TempSec.relocations.push_back(R); in constructSectionCommon()
117 return TempSec; in constructSectionCommon()
123 Expected<MachOYAML::Section> TempSec = constructSectionCommon(Sec, SecIndex); in constructSection() local
124 if (TempSec) in constructSection()
125 TempSec->reserved3 = 0; in constructSection()
126 return TempSec; in constructSection()
132 Expected<MachOYAML::Section> TempSec = constructSectionCommon(Sec, SecIndex); in constructSection() local
133 if (TempSec) in constructSection()
134 TempSec->reserved3 = Sec.reserved3; in constructSection()
135 return TempSec; in constructSection()