/openbsd-src/gnu/usr.bin/binutils/gdb/ |
H A D | coff-pe-read.c | 191 unsigned long export_rva, export_size, nsections, secptr, expptr; in read_pe_exported_syms() local 229 export_size = pe_get32 (dll, opthdr_ofs + 100); in read_pe_exported_syms() 250 if (export_rva + export_size > vaddr + vsize) in read_pe_exported_syms() 251 export_size = vsize - (export_rva - vaddr); in read_pe_exported_syms() 256 if (export_size == 0) in read_pe_exported_syms() 285 expdata = (unsigned char *) xmalloc (export_size); in read_pe_exported_syms() 289 bfd_bread (expdata, (bfd_size_type) export_size, dll); in read_pe_exported_syms()
|
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/MachO/ |
H A D | MachOWriter.cpp | 81 assert((DyLdInfoCommand.export_size == O.Exports.Trie.size()) && in totalSize() 83 Ends.push_back(DyLdInfoCommand.export_off + DyLdInfoCommand.export_size); in totalSize() 372 assert((DyLdInfoCommand.export_size == O.Exports.Trie.size()) && in writeExportInfo()
|
H A D | MachOLayoutBuilder.cpp | 409 MLC.dyld_info_command_data.export_size = DyldInfoExportsTrieSize; in layoutTail()
|
/openbsd-src/gnu/usr.bin/binutils/ld/ |
H A D | pe-dll.c | 2446 unsigned long export_rva, export_size, nsections, secptr, expptr; in pe_implied_import_dll() local 2485 export_size = pe_get32 (dll, opthdr_ofs + 100); in pe_implied_import_dll() 2506 if (export_rva + export_size > vaddr + vsize) in pe_implied_import_dll() 2507 export_size = vsize - (export_rva - vaddr); in pe_implied_import_dll() 2555 expdata = xmalloc (export_size); in pe_implied_import_dll() 2557 bfd_bread (expdata, (bfd_size_type) export_size, dll); in pe_implied_import_dll()
|
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/ |
H A D | pe-dll.c | 2475 unsigned long export_rva, export_size, nsections, secptr, expptr; in pe_implied_import_dll() local 2515 export_size = pe_get32 (dll, opthdr_ofs + 100); in pe_implied_import_dll() 2536 if (export_rva + export_size > vaddr + vsize) in pe_implied_import_dll() 2537 export_size = vsize - (export_rva - vaddr); in pe_implied_import_dll() 2585 expdata = xmalloc (export_size); in pe_implied_import_dll() 2587 bfd_bread (expdata, (bfd_size_type) export_size, dll); in pe_implied_import_dll()
|
/openbsd-src/gnu/llvm/lldb/examples/python/ |
H A D | mach_o.py | 1371 self.export_size = 0 1375 …d_size, self.lazy_bind_off, self.lazy_bind_size, self.export_off, self.export_size = data.get_n_ui… 1389 self.export_off, self.export_size)
|
/openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/ |
H A D | MachO.h | 890 uint32_t export_size; member 1258 sys::swapByteOrder(info.export_size); in swapStruct()
|
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/ |
H A D | MachOYAML.cpp | 314 IO.mapRequired("export_size", LoadCommand.export_size); in mapping()
|
/openbsd-src/gnu/llvm/lld/MachO/ |
H A D | Writer.cpp | 120 c->export_size = exportSection->getFileSize(); in writeTo()
|
H A D | InputFiles.cpp | 1716 parseExportedSymbols(dyldInfo->export_off, dyldInfo->export_size); in DylibFile()
|
/openbsd-src/gnu/llvm/llvm/lib/Object/ |
H A D | MachOObjectFile.cpp | 718 BigSize += DyldInfo.export_size; in checkDyldInfoCommand() 725 DyldInfo.export_size, in checkDyldInfoCommand() 4960 return ArrayRef(Ptr, DyldInfo.export_size); in getDyldInfoExportsTrie()
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/ |
H A D | ObjectFileMachO.cpp | 2484 lldbassert(!((dyld_info.export_size > 0) in ParseSymtab() 2486 if (dyld_info.export_size > 0) { in ParseSymtab() 2488 dyld_info.export_size); in ParseSymtab()
|
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 9318 outs() << " export_size " << dc.export_size; in PrintDyldInfoLoadCommand() 9320 big_size += dc.export_size; in PrintDyldInfoLoadCommand()
|