Home
last modified time | relevance | path

Searched refs:orl_count (Results 1 – 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/binutils/bfd/
Darchive.c1786 unsigned int orl_count = 0; in _bfd_compute_and_write_armap() local
1862 if (orl_count == orl_max) in _bfd_compute_and_write_armap()
1875 map[orl_count].name = bfd_alloc (arch, amt); in _bfd_compute_and_write_armap()
1876 if (map[orl_count].name == NULL) in _bfd_compute_and_write_armap()
1878 *(map[orl_count].name) = bfd_alloc (arch, namelen + 1); in _bfd_compute_and_write_armap()
1879 if (*(map[orl_count].name) == NULL) in _bfd_compute_and_write_armap()
1881 strcpy (*(map[orl_count].name), syms[src_count]->name); in _bfd_compute_and_write_armap()
1882 map[orl_count].u.abfd = current; in _bfd_compute_and_write_armap()
1883 map[orl_count].namidx = stridx; in _bfd_compute_and_write_armap()
1886 ++orl_count; in _bfd_compute_and_write_armap()
[all …]
Dcoff-rs6000.c1592 xcoff_write_armap_old (abfd, elength, map, orl_count, stridx) in xcoff_write_armap_old() argument
1596 unsigned int orl_count;
1607 sprintf (hdr.size, "%ld", (long) (4 + orl_count * 4 + stridx));
1627 H_PUT_32 (abfd, orl_count, buf);
1634 while (sub != NULL && i < orl_count)
1655 for (i = 0; i < orl_count; i++)
1783 xcoff_write_armap_big (abfd, elength, map, orl_count, stridx) in xcoff_write_armap_big() argument
1787 unsigned int orl_count;
1805 while (current_bfd != NULL && i < orl_count)
1829 BFD_ASSERT (sym_64 + sym_32 == orl_count);
[all …]
Dlibbfd-in.h191 (bfd *arch, unsigned int elength, struct orl *map, unsigned int orl_count,
195 (bfd *arch, unsigned int elength, struct orl *map, unsigned int orl_count,
Dlibbfd.h196 (bfd *arch, unsigned int elength, struct orl *map, unsigned int orl_count,
200 (bfd *arch, unsigned int elength, struct orl *map, unsigned int orl_count,
Decoff.c3001 unsigned int orl_count, in _bfd_ecoff_write_armap() argument
3020 for (hashlog = 0; ((unsigned int) 1 << hashlog) <= 2 * orl_count; hashlog++) in _bfd_ecoff_write_armap()
3088 for (i = 0; i < orl_count; i++) in _bfd_ecoff_write_armap()
3137 for (i = 0; i < orl_count; i++) in _bfd_ecoff_write_armap()
DChangeLog-94957019 (som_write_armap): Add elength, map, orl_count and int arguments.
9251 (rs6000coff_write_armap): Declare orl_count and stridx parameters.
DChangeLog-91936692 * targets.c (proto write_armap). Changed orl_count to unsigned.