Searched refs:SIZEOF_AR_HDR (Results 1 – 2 of 2) sorted by relevance
271 info->header_size = SIZEOF_AR_HDR; in member_layout_init()1223 if (bfd_bread (&hdr, (bfd_size_type) SIZEOF_AR_HDR, abfd) in _bfd_xcoff_slurp_armap()1224 != SIZEOF_AR_HDR) in _bfd_xcoff_slurp_armap()1465 if (bfd_bread (&hdr, (bfd_size_type) SIZEOF_AR_HDR, abfd) in _bfd_xcoff_read_ar_hdr()1466 != SIZEOF_AR_HDR) in _bfd_xcoff_read_ar_hdr()1473 amt = SIZEOF_AR_HDR + namlen + 1; in _bfd_xcoff_read_ar_hdr()1480 memcpy (hdrp, &hdr, SIZEOF_AR_HDR); in _bfd_xcoff_read_ar_hdr()1481 if (bfd_bread ((char *) hdrp + SIZEOF_AR_HDR, namlen, abfd) != namlen) in _bfd_xcoff_read_ar_hdr()1486 ((char *) hdrp)[SIZEOF_AR_HDR + namlen] = '\0'; in _bfd_xcoff_read_ar_hdr()1490 ret->filename = (char *) hdrp + SIZEOF_AR_HDR; in _bfd_xcoff_read_ar_hdr()[all …]
567 #define SIZEOF_AR_HDR (3 * XCOFFARMAG_ELEMENT_SIZE + 4 * 12 + 4) macro