Home
last modified time | relevance | path

Searched refs:TempSec (Results 1 – 2 of 2) sorted by relevance

/external/llvm/tools/obj2yaml/
Dmacho2yaml.cpp54 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()
[all …]
/external/llvm/tools/yaml2obj/
Dyaml2macho.cpp95 SectionType TempSec; in constructSection() local
96 memcpy(reinterpret_cast<void *>(&TempSec.sectname[0]), &Sec.sectname[0], 16); in constructSection()
97 memcpy(reinterpret_cast<void *>(&TempSec.segname[0]), &Sec.segname[0], 16); in constructSection()
98 TempSec.addr = Sec.addr; in constructSection()
99 TempSec.size = Sec.size; in constructSection()
100 TempSec.offset = Sec.offset; in constructSection()
101 TempSec.align = Sec.align; in constructSection()
102 TempSec.reloff = Sec.reloff; in constructSection()
103 TempSec.nreloc = Sec.nreloc; in constructSection()
104 TempSec.flags = Sec.flags; in constructSection()
[all …]