Home
last modified time | relevance | path

Searched refs:set_32 (Results 1 – 3 of 3) sorted by relevance

/toolchain/binutils/binutils-2.25/libiberty/
Dsimple-object-mach-o.c895 void (*set_32) (unsigned char *, unsigned int); in simple_object_mach_o_write_header() local
900 set_32 = (attrs->is_big_endian in simple_object_mach_o_write_header()
909 set_32 (hdr + offsetof (struct mach_o_header_32, magic), attrs->magic); in simple_object_mach_o_write_header()
910 set_32 (hdr + offsetof (struct mach_o_header_32, cputype), attrs->cputype); in simple_object_mach_o_write_header()
911 set_32 (hdr + offsetof (struct mach_o_header_32, cpusubtype), in simple_object_mach_o_write_header()
913 set_32 (hdr + offsetof (struct mach_o_header_32, filetype), MACH_O_MH_OBJECT); in simple_object_mach_o_write_header()
914 set_32 (hdr + offsetof (struct mach_o_header_32, ncmds), 1); in simple_object_mach_o_write_header()
915 set_32 (hdr + offsetof (struct mach_o_header_32, flags), attrs->flags); in simple_object_mach_o_write_header()
919 set_32 (hdr + offsetof (struct mach_o_header_32, sizeofcmds), in simple_object_mach_o_write_header()
925 set_32 (hdr + offsetof (struct mach_o_header_64, sizeofcmds), in simple_object_mach_o_write_header()
[all …]
Dsimple-object-xcoff.c582 void (*set_32) (unsigned char *, unsigned int); in simple_object_xcoff_write_filehdr() local
588 set_32 = simple_object_set_big_32; in simple_object_xcoff_write_filehdr()
600 set_32 (hdr + offsetof (struct external_filehdr, u.xcoff64.f_nsyms), in simple_object_xcoff_write_filehdr()
608 set_32 (hdr + offsetof (struct external_filehdr, u.xcoff64.f_symptr), in simple_object_xcoff_write_filehdr()
610 set_32 (hdr + offsetof (struct external_filehdr, u.xcoff64.f_nsyms), in simple_object_xcoff_write_filehdr()
635 void (*set_32) (unsigned char *, unsigned int); in simple_object_xcoff_write_scnhdr() local
642 set_32 = simple_object_set_big_32; in simple_object_xcoff_write_scnhdr()
670 set_32 (hdr + offsetof (struct external_scnhdr, u.xcoff32.s_size), in simple_object_xcoff_write_scnhdr()
672 set_32 (hdr + offsetof (struct external_scnhdr, u.xcoff32.s_scnptr), in simple_object_xcoff_write_scnhdr()
683 set_32 (hdr + offsetof (struct external_scnhdr, u.xcoff64.s_flags), flags); in simple_object_xcoff_write_scnhdr()
[all …]
Dsimple-object-coff.c514 void (*set_32) (unsigned char *, unsigned int); in simple_object_coff_write_filehdr() local
521 set_32 = (attrs->is_big_endian in simple_object_coff_write_filehdr()
530 set_32 (hdr + offsetof (struct external_filehdr, f_symptr), symtab_offset); in simple_object_coff_write_filehdr()
531 set_32 (hdr + offsetof (struct external_filehdr, f_nsyms), nsyms); in simple_object_coff_write_filehdr()
551 void (*set_32) (unsigned char *, unsigned int); in simple_object_coff_write_scnhdr() local
557 set_32 = (attrs->is_big_endian in simple_object_coff_write_scnhdr()
577 set_32 (hdr + offsetof (struct external_scnhdr, s_size), scnsize); in simple_object_coff_write_scnhdr()
578 set_32 (hdr + offsetof (struct external_scnhdr, s_scnptr), offset); in simple_object_coff_write_scnhdr()
589 set_32 (hdr + offsetof (struct external_scnhdr, s_flags), flags); in simple_object_coff_write_scnhdr()
625 void (*set_32) (unsigned char *, unsigned int); in simple_object_coff_write_to_file() local
[all …]