Home
last modified time | relevance | path

Searched refs:export_size (Results 1 – 13 of 13) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dcoff-pe-read.c191 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 DMachOWriter.cpp81 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 DMachOLayoutBuilder.cpp409 MLC.dyld_info_command_data.export_size = DyldInfoExportsTrieSize; in layoutTail()
/openbsd-src/gnu/usr.bin/binutils/ld/
H A Dpe-dll.c2446 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 Dpe-dll.c2475 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 Dmach_o.py1371 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 DMachO.h890 uint32_t export_size; member
1258 sys::swapByteOrder(info.export_size); in swapStruct()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp314 IO.mapRequired("export_size", LoadCommand.export_size); in mapping()
/openbsd-src/gnu/llvm/lld/MachO/
H A DWriter.cpp120 c->export_size = exportSection->getFileSize(); in writeTo()
H A DInputFiles.cpp1716 parseExportedSymbols(dyldInfo->export_off, dyldInfo->export_size); in DylibFile()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DMachOObjectFile.cpp718 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 DObjectFileMachO.cpp2484 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 DMachODump.cpp9318 outs() << " export_size " << dc.export_size; in PrintDyldInfoLoadCommand()
9320 big_size += dc.export_size; in PrintDyldInfoLoadCommand()