Lines Matching refs:TempSec
54 MachOYAML::Section TempSec; in constructSectionCommon() local
55 memcpy(reinterpret_cast<void *>(&TempSec.sectname[0]), &Sec.sectname[0], 16); in constructSectionCommon()
56 memcpy(reinterpret_cast<void *>(&TempSec.segname[0]), &Sec.segname[0], 16); in constructSectionCommon()
57 TempSec.addr = Sec.addr; in constructSectionCommon()
58 TempSec.size = Sec.size; in constructSectionCommon()
59 TempSec.offset = Sec.offset; in constructSectionCommon()
60 TempSec.align = Sec.align; in constructSectionCommon()
61 TempSec.reloff = Sec.reloff; in constructSectionCommon()
62 TempSec.nreloc = Sec.nreloc; in constructSectionCommon()
63 TempSec.flags = Sec.flags; in constructSectionCommon()
64 TempSec.reserved1 = Sec.reserved1; in constructSectionCommon()
65 TempSec.reserved2 = Sec.reserved2; in constructSectionCommon()
66 TempSec.reserved3 = 0; in constructSectionCommon()
67 return TempSec; in constructSectionCommon()
74 MachOYAML::Section TempSec = constructSectionCommon(Sec); in constructSection() local
75 TempSec.reserved3 = 0; in constructSection()
76 return TempSec; in constructSection()
80 MachOYAML::Section TempSec = constructSectionCommon(Sec); in constructSection() local
81 TempSec.reserved3 = Sec.reserved3; in constructSection()
82 return TempSec; in constructSection()