Home
last modified time | relevance | path

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

/NextBSD/contrib/gdb/gdb/
HDcoff-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()
/NextBSD/contrib/binutils/ld/
HDpe-dll.c2594 unsigned long export_rva, export_size, nsections, secptr, expptr; in pe_implied_import_dll() local
2639 export_size = pe_get32 (dll, opthdr_ofs + 100 + 4 * 4); in pe_implied_import_dll()
2642 export_size = pe_get32 (dll, opthdr_ofs + 100); in pe_implied_import_dll()
2665 if (export_rva + export_size > vaddr + vsize) in pe_implied_import_dll()
2666 export_size = vsize - (export_rva - vaddr); in pe_implied_import_dll()
2714 expdata = xmalloc (export_size); in pe_implied_import_dll()
2716 bfd_bread (expdata, (bfd_size_type) export_size, dll); in pe_implied_import_dll()
/NextBSD/contrib/llvm/include/llvm/Support/
HDMachO.h874 uint32_t export_size; member
1098 sys::swapByteOrder(info.export_size); in swapStruct()
/NextBSD/contrib/llvm/lib/Object/
HDMachOObjectFile.cpp2261 return ArrayRef<uint8_t>(Ptr, DyldInfo.export_size); in getDyldInfoExportsTrie()
/NextBSD/contrib/llvm/tools/llvm-objdump/
HDMachODump.cpp7574 outs() << " export_size " << dc.export_size; in PrintDyldInfoLoadCommand()
7576 big_size += dc.export_size; in PrintDyldInfoLoadCommand()