Home
last modified time | relevance | path

Searched refs:section_64 (Results 1 – 25 of 31) sorted by relevance

12

/external/google-breakpad/src/common/mac/
Dmacho_utilities.h80 void breakpad_swap_section_64(struct section_64 *s,
Dmacho_id.cc308 struct section_64 sec64; in WalkerCB()
323 offset += sizeof(struct section_64); in WalkerCB()
Dmacho_utilities.cc74 void breakpad_swap_section_64(struct section_64 *s, in breakpad_swap_section_64()
/external/llvm/lib/Object/
DMachOObjectFile.cpp83 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : in getSectionPtr()
164 MachO::section_64 Sect = O->getSection64(Sec); in getSectionFlags()
234 Obj->is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section); in parseSegmentLoadCommand()
623 MachO::section_64 Sect = getSection64(Sec); in getSectionSize()
649 MachO::section_64 Sect = getSection64(Sec); in getSectionContents()
665 MachO::section_64 Sect = getSection64(Sec); in getSectionAlignment()
728 MachO::section_64 Sect = getSection64(Sec); in section_rel_end()
2066 MachO::section_64 MachOObjectFile::getSection64(DataRefImpl DRI) const { in getSection64()
2068 return getStruct<MachO::section_64>(this, Sections[DRI.d.a]); in getSection64()
2077 MachO::section_64 MachOObjectFile::getSection64(const LoadCommandInfo &L, in getSection64()
[all …]
/external/llvm/include/llvm/ObjectYAML/
DMachOYAML.h288 template <> struct MappingTraits<MachO::section_64> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
289 static void mapping(IO &IO, MachO::section_64 &LoadCommand); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DMachOYAML.h299 template <> struct MappingTraits<MachO::section_64> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
300 static void mapping(IO &IO, MachO::section_64 &LoadCommand); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/llvm/tools/yaml2obj/
Dyaml2macho.cpp134 auto TempSec = constructSection<MachO::section_64>(Sec); in writeLoadCommandData()
137 sizeof(MachO::section_64)); in writeLoadCommandData()
138 BytesWritten += sizeof(MachO::section_64); in writeLoadCommandData()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2macho.cpp142 auto TempSec = constructSection<MachO::section_64>(Sec); in writeLoadCommandData()
147 sizeof(MachO::section_64)); in writeLoadCommandData()
148 BytesWritten += sizeof(MachO::section_64); in writeLoadCommandData()
/external/llvm/tools/dsymutil/
DMachOUtils.cpp210 static MachO::section_64
312 NumSections * sizeof(MachO::section_64); in segmentLoadCommandSize()
/external/llvm/include/llvm/Object/
DMachO.h335 MachO::section_64 getSection64(DataRefImpl DRI) const;
337 MachO::section_64 getSection64(const LoadCommandInfo &L,unsigned Index) const;
/external/llvm/lib/MC/
DMachObjectWriter.cpp170 NumSections * (is64Bit() ? sizeof(MachO::section_64) : in writeSegmentLoadCommand()
238 (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section))); in writeSection()
725 sizeof(MachO::segment_command_64) + NumSections * sizeof(MachO::section_64): in writeObject()
/external/llvm/tools/obj2yaml/
Dmacho2yaml.cpp79 template <> MachOYAML::Section constructSection(MachO::section_64 Sec) { in constructSection()
125 return extractSections<MachO::section_64, MachO::segment_command_64>( in processLoadCommandData()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DMachOUtils.cpp225 static MachO::section_64
328 NumSections * sizeof(MachO::section_64); in segmentLoadCommandSize()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DMachOObjectFile.cpp102 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : in getSectionPtr()
176 MachO::section_64 Sect = O.getSection64(Sec); in getSectionFlags()
1349 MachO::section_64>( in MachOObjectFile()
1890 MachO::section_64 Sect = getSection64(Sec); in getSectionSize()
1916 MachO::section_64 Sect = getSection64(Sec); in getSectionContents()
1932 MachO::section_64 Sect = getSection64(Sec); in getSectionAlignment()
2024 MachO::section_64 Sect = getSection64(Sec); in section_rel_end()
4235 MachO::section_64 MachOObjectFile::getSection64(DataRefImpl DRI) const { in getSection64()
4237 return getStruct<MachO::section_64>(*this, Sections[DRI.d.a]); in getSection64()
4246 MachO::section_64 MachOObjectFile::getSection64(const LoadCommandInfo &L, in getSection64()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dmacho2yaml.cpp84 template <> MachOYAML::Section constructSection(MachO::section_64 Sec) { in constructSection()
130 return extractSections<MachO::section_64, MachO::segment_command_64>( in processLoadCommandData()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMachObjectWriter.cpp188 NumSections * (is64Bit() ? sizeof(MachO::section_64) : in writeSegmentLoadCommand()
255 (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section))); in writeSection()
754 sizeof(MachO::segment_command_64) + NumSections * sizeof(MachO::section_64): in writeObject()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DMachO.h495 MachO::section_64 getSection64(DataRefImpl DRI) const;
497 MachO::section_64 getSection64(const LoadCommandInfo &L,unsigned Index) const;
/external/llvm/lib/ObjectYAML/
DMachOYAML.cpp431 void MappingTraits<MachO::section_64>::mapping(IO &IO, in mapping()
432 MachO::section_64 &Section) { in mapping()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DMachOYAML.cpp448 void MappingTraits<MachO::section_64>::mapping(IO &IO, in mapping()
449 MachO::section_64 &Section) { in mapping()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-size/
Dllvm-size.cpp237 MachO::section_64 Sec = MachO->getSection64(Load, J); in printDarwinSectionSizes()
299 MachO::section_64 Sec = MachO->getSection64(Load, J); in printDarwinSegmentSizes()
/external/llvm/tools/llvm-size/
Dllvm-size.cpp227 MachO::section_64 Sec = MachO->getSection64(Load, J); in printDarwinSectionSizes()
289 MachO::section_64 Sec = MachO->getSection64(Load, J); in printDarwinSegmentSizes()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DMachO.h347 struct section_64 { struct
/external/llvm/include/llvm/Support/
DMachO.h560 struct section_64 { struct
1046 inline void swapStruct(section_64 &sect) { in swapStruct()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMachO.h560 struct section_64 { struct
1054 inline void swapStruct(section_64 &sect) { in swapStruct()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
DMachO.h565 struct section_64 { struct
1071 inline void swapStruct(section_64 &sect) { in swapStruct()

12