Lines Matching refs:TempSec

74   MachOYAML::Section TempSec;  in constructSectionCommon()  local
75 memcpy(reinterpret_cast<void *>(&TempSec.sectname[0]), &Sec.sectname[0], 16); in constructSectionCommon()
76 memcpy(reinterpret_cast<void *>(&TempSec.segname[0]), &Sec.segname[0], 16); in constructSectionCommon()
77 TempSec.addr = Sec.addr; in constructSectionCommon()
78 TempSec.size = Sec.size; in constructSectionCommon()
79 TempSec.offset = Sec.offset; in constructSectionCommon()
80 TempSec.align = Sec.align; in constructSectionCommon()
81 TempSec.reloff = Sec.reloff; in constructSectionCommon()
82 TempSec.nreloc = Sec.nreloc; in constructSectionCommon()
83 TempSec.flags = Sec.flags; in constructSectionCommon()
84 TempSec.reserved1 = Sec.reserved1; in constructSectionCommon()
85 TempSec.reserved2 = Sec.reserved2; in constructSectionCommon()
86 TempSec.reserved3 = 0; in constructSectionCommon()
88 TempSec.content = in constructSectionCommon()
92 TempSec.relocations.reserve(TempSec.nreloc); in constructSectionCommon()
106 TempSec.relocations.push_back(R); in constructSectionCommon()
111 return TempSec; in constructSectionCommon()
117 Expected<MachOYAML::Section> TempSec = constructSectionCommon(Sec, SecIndex); in constructSection() local
118 if (TempSec) in constructSection()
119 TempSec->reserved3 = 0; in constructSection()
120 return TempSec; in constructSection()
126 Expected<MachOYAML::Section> TempSec = constructSectionCommon(Sec, SecIndex); in constructSection() local
127 if (TempSec) in constructSection()
128 TempSec->reserved3 = Sec.reserved3; in constructSection()
129 return TempSec; in constructSection()