Home
last modified time | relevance | path

Searched full:fileoff (Results 1 – 25 of 72) sorted by relevance

123

/external/llvm/test/ObjectYAML/MachO/
Dload_commands.yaml19 fileoff: 0
30 fileoff: 0
41 fileoff: 8192
52 fileoff: 12288
145 #CHECK: fileoff: 0
156 #CHECK: fileoff: 0
167 #CHECK: fileoff: 8192
178 #CHECK: fileoff: 12288
Dexport_trie.yaml19 fileoff: 0
30 fileoff: 0
41 fileoff: 8192
52 fileoff: 12288
Dsections.yaml19 fileoff: 0
30 fileoff: 0
114 fileoff: 8192
162 fileoff: 12288
Dout_of_order_linkedit.yaml19 fileoff: 0
30 fileoff: 0
41 fileoff: 8192
52 fileoff: 12288
Dsymtab.yaml19 fileoff: 0
30 fileoff: 0
42 fileoff: 8192
54 fileoff: 12288
Drebase_opcode.yaml19 fileoff: 1024
Dbind_opcode.yaml19 fileoff: 1024
Dweak_bind_opcode.yaml19 fileoff: 1024
/external/llvm/test/tools/llvm-objdump/AArch64/
Dmacho-private-headers.test14 CHECK: fileoff 384
89 EXE: fileoff 0
101 EXE: fileoff 0
178 EXE: fileoff 32768
216 EXE: fileoff 49152
/external/llvm/test/Object/
Dsize-trivial-macho.test61 mxl: Segment __PAGEZERO: 0x100000000 (vmaddr 0x0 fileoff 0)
62 mxl: Segment __TEXT: 0x1000 (vmaddr 0x100000000 fileoff 0)
70 mxl: Segment __DATA: 0x1000 (vmaddr 0x100001000 fileoff 4096)
74 mxl: Segment __LINKEDIT: 0x1000 (vmaddr 0x100002000 fileoff 8192)
/external/llvm/test/tools/llvm-objdump/ARM/
Dmacho-private-headers.test14 CHECK: fileoff 596
136 EXE: fileoff 0
148 EXE: fileoff 0
212 EXE: fileoff 32768
250 EXE: fileoff 49152
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DELFWriter.cpp1035 size_t FileOff = ElfHdr.size(); // File header first. in OutputSectionsAndSectionTable() local
1041 ES.Offset = FileOff; in OutputSectionsAndSectionTable()
1049 // Align FileOff to whatever the alignment restrictions of the section are. in OutputSectionsAndSectionTable()
1051 FileOff = (FileOff+ES.Align-1) & ~(ES.Align-1); in OutputSectionsAndSectionTable()
1053 ES.Offset = FileOff; in OutputSectionsAndSectionTable()
1054 FileOff += ES.Size; in OutputSectionsAndSectionTable()
1059 FileOff = (FileOff+TableAlign-1) & ~(TableAlign-1); in OutputSectionsAndSectionTable()
1067 ElfHdr.fixWord(FileOff, ELFHdr_e_shoff_Offset); in OutputSectionsAndSectionTable()
1072 FileOff = ElfHdr.size(); in OutputSectionsAndSectionTable()
1084 // Align FileOff to whatever the alignment restrictions of the section are. in OutputSectionsAndSectionTable()
[all …]
/external/llvm/test/tools/llvm-objdump/X86/
Dmacho-private-headers.test36 CHECK: fileoff 528
132 EXE: fileoff 0
144 EXE: fileoff 0
234 EXE: fileoff 4096
272 EXE: fileoff 8192
460 NON_VERBOSE: fileoff 528
/external/swiftshader/third_party/LLVM/lib/MC/
DELFObjectWriter.cpp1056 uint64_t FileOff = OS.tell(); in WriteDataSectionData() local
1059 uint64_t Padding = OffsetToAlignment(FileOff, SD.getAlignment()); in WriteDataSectionData()
1061 FileOff += Padding; in WriteDataSectionData()
1063 FileOff += GetSectionFileSize(Layout, SD); in WriteDataSectionData()
1181 uint64_t FileOff = HeaderSize; in WriteObject() local
1191 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment()); in WriteObject()
1194 SectionOffsetMap[&Section] = FileOff; in WriteObject()
1197 FileOff += GetSectionFileSize(Layout, SD); in WriteObject()
1200 FileOff = RoundUpToAlignment(FileOff, NaturalAlignment); in WriteObject()
1202 const unsigned SectionHeaderOffset = FileOff - HeaderSize; in WriteObject()
[all …]
/external/google-breakpad/src/common/mac/
Dmacho_utilities.cc52 sg->fileoff = ByteSwap(sg->fileoff); in breakpad_swap_segment_command_64()
/external/llvm/tools/llvm-readobj/
DMachODumper.cpp275 uint64_t fileoff; member
343 Segment.fileoff = SC.fileoff; in getSegment()
357 Segment.fileoff = SC.fileoff; in getSegment()
783 W.printNumber("fileoff", MOSegment.fileoff); in printMachOSegment()
/external/valgrind/coregrind/
Dfixup_macho_loadcmds.c41 fileoff 2285568
67 fileoff 2658304
544 seg->fileoff = 0; in modify_macho_loadcmds()
632 fileoff 2658304
646 fileoff 2498560
/external/llvm/test/tools/llvm-ar/Inputs/
Dmacho.yaml17 fileoff: 184
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_procmaps_mac.cc39 // The |vmaddr|, |vmsize| and |fileoff| fields of segment_command or
93 *offset = sc->fileoff; in NextSegmentLoad()
/external/llvm/tools/dsymutil/
DMachOUtils.cpp114 Seg64.fileoff = Seg.fileoff; in adaptFrom32bits()
234 Segment.fileoff = Segment.filesize = 0; in transferSegmentAndSections()
237 Segment.fileoff = LinkeditOffset; in transferSegmentAndSections()
/external/llvm/lib/ObjectYAML/
DMachOYAML.cpp453 IO.mapRequired("fileoff", LoadCommand.fileoff); in mapping()
467 IO.mapRequired("fileoff", LoadCommand.fileoff); in mapping()
/external/valgrind/coregrind/m_ume/
Dmacho.c212 if (segcmd->fileoff == 0 && segcmd->filesize != 0) { in load_segment()
222 if (segcmd->fileoff + segcmd->filesize > size) { in load_segment()
249 offset + segcmd->fileoff, in load_segment()
604 if (filetype == MH_DYLINKER && segcmd->vmaddr == 0 && segcmd->fileoff == 0) { in load_thin_file()
/external/llvm/test/MC/MachO/
Ddarwin-x86_64-nobase-relocs.s66 // CHECK: fileoff: 200
Ddata.s74 // CHECK: fileoff: 236
Dsection-align-1.s63 // CHECK: fileoff: 272

123