Searched refs:fetch_32 (Results 1 – 3 of 3) sorted by relevance
/toolchain/binutils/binutils-2.25/libiberty/ |
D | simple-object-mach-o.c | 250 unsigned int (*fetch_32) (const unsigned char *); in simple_object_mach_o_match() local 301 fetch_32 = (is_big_endian in simple_object_mach_o_match() 314 filetype = (*fetch_32) (b + offsetof (struct mach_o_header_32, filetype)); in simple_object_mach_o_match() 326 omr->cputype = (*fetch_32) (b + offsetof (struct mach_o_header_32, cputype)); in simple_object_mach_o_match() 327 omr->cpusubtype = (*fetch_32) (b in simple_object_mach_o_match() 330 omr->ncmds = (*fetch_32) (b + offsetof (struct mach_o_header_32, ncmds)); in simple_object_mach_o_match() 331 omr->flags = (*fetch_32) (b + offsetof (struct mach_o_header_32, flags)); in simple_object_mach_o_match() 335 omr->reserved = (*fetch_32) (b in simple_object_mach_o_match() 349 unsigned int (*fetch_32) (const unsigned char *); in simple_object_mach_o_section_info() local 352 fetch_32 = (is_big_endian in simple_object_mach_o_section_info() [all …]
|
D | simple-object-xcoff.c | 299 unsigned int (*fetch_32) (const unsigned char *); in simple_object_xcoff_match() local 315 fetch_32 = simple_object_fetch_big_32; in simple_object_xcoff_match() 332 ocr->nsyms = fetch_32 (hdrbuf + offsetof (struct external_filehdr, in simple_object_xcoff_match() 341 ocr->symptr = fetch_32 (hdrbuf in simple_object_xcoff_match() 344 ocr->nsyms = fetch_32 (hdrbuf + offsetof (struct external_filehdr, in simple_object_xcoff_match() 401 unsigned int (*fetch_32) (const unsigned char *); in simple_object_xcoff_find_sections() local 419 fetch_32 = simple_object_fetch_big_32; in simple_object_xcoff_find_sections() 482 scnptr = fetch_32 (scnhdr + offsetof (struct external_scnhdr, in simple_object_xcoff_find_sections() 484 size = fetch_32 (scnhdr + offsetof (struct external_scnhdr, in simple_object_xcoff_find_sections()
|
D | simple-object-coff.c | 240 unsigned int (*fetch_32) (const unsigned char *); in simple_object_coff_match() local 267 fetch_32 = (is_big_endian in simple_object_coff_match() 287 ocr->symptr = fetch_32 (hdrbuf in simple_object_coff_match() 289 ocr->nsyms = fetch_32 (hdrbuf + offsetof (struct external_filehdr, f_nsyms)); in simple_object_coff_match() 345 unsigned int (*fetch_32) (const unsigned char *); in simple_object_coff_find_sections() local 362 fetch_32 = (ocr->is_big_endian in simple_object_coff_find_sections() 417 scnptr = fetch_32 (scnhdr + offsetof (struct external_scnhdr, s_scnptr)); in simple_object_coff_find_sections() 418 size = fetch_32 (scnhdr + offsetof (struct external_scnhdr, s_size)); in simple_object_coff_find_sections()
|