Home
last modified time | relevance | path

Searched refs:hashp (Results 1 – 11 of 11) sorted by relevance

/toolchain/binutils/binutils-2.25/bfd/
Dcoff-aux.c74 struct bfd_link_hash_entry **hashp) in coff_m68k_aux_link_add_one_symbol() argument
85 if (hashp != NULL && *hashp != NULL) in coff_m68k_aux_link_add_one_symbol()
86 h = *hashp; in coff_m68k_aux_link_add_one_symbol()
92 if (hashp != NULL) in coff_m68k_aux_link_add_one_symbol()
93 *hashp = NULL; in coff_m68k_aux_link_add_one_symbol()
98 if (hashp != (struct bfd_link_hash_entry **) NULL) in coff_m68k_aux_link_add_one_symbol()
99 *hashp = h; in coff_m68k_aux_link_add_one_symbol()
144 hashp); in coff_m68k_aux_link_add_one_symbol()
Dhash.c463 struct bfd_hash_entry *hashp; in bfd_hash_lookup() local
469 for (hashp = table->table[_index]; in bfd_hash_lookup()
470 hashp != NULL; in bfd_hash_lookup()
471 hashp = hashp->next) in bfd_hash_lookup()
473 if (hashp->hash == hash in bfd_hash_lookup()
474 && strcmp (hashp->string, string) == 0) in bfd_hash_lookup()
475 return hashp; in bfd_hash_lookup()
506 struct bfd_hash_entry *hashp; in bfd_hash_insert() local
509 hashp = (*table->newfunc) (NULL, table, string); in bfd_hash_insert()
510 if (hashp == NULL) in bfd_hash_insert()
[all …]
Dmerge.c141 struct sec_merge_hash_entry *hashp; in sec_merge_hash_lookup() local
195 for (hashp = (struct sec_merge_hash_entry *) table->table.table[_index]; in sec_merge_hash_lookup()
196 hashp != NULL; in sec_merge_hash_lookup()
197 hashp = (struct sec_merge_hash_entry *) hashp->root.next) in sec_merge_hash_lookup()
199 if (hashp->root.hash == hash in sec_merge_hash_lookup()
200 && len == hashp->len in sec_merge_hash_lookup()
201 && memcmp (hashp->root.string, string, len) == 0) in sec_merge_hash_lookup()
205 if (hashp->alignment < alignment) in sec_merge_hash_lookup()
210 hashp->len = 0; in sec_merge_hash_lookup()
211 hashp->alignment = 0; in sec_merge_hash_lookup()
[all …]
Dm68klinux.c308 struct bfd_link_hash_entry **hashp) in linux_add_one_symbol() argument
346 if (hashp != NULL) in linux_add_one_symbol()
347 *hashp = (struct bfd_link_hash_entry *) h; in linux_add_one_symbol()
361 hashp)) in linux_add_one_symbol()
Dsparclinux.c302 struct bfd_link_hash_entry **hashp) in linux_add_one_symbol() argument
340 if (hashp != NULL) in linux_add_one_symbol()
341 *hashp = (struct bfd_link_hash_entry *) h; in linux_add_one_symbol()
355 hashp)) in linux_add_one_symbol()
Di386linux.c306 struct bfd_link_hash_entry **hashp) in linux_add_one_symbol() argument
344 if (hashp != NULL) in linux_add_one_symbol()
345 *hashp = (struct bfd_link_hash_entry *) h; in linux_add_one_symbol()
359 hashp)) in linux_add_one_symbol()
Dlinker.c1441 struct bfd_link_hash_entry **hashp) in _bfd_generic_link_add_one_symbol() argument
1486 if (hashp != NULL && *hashp != NULL) in _bfd_generic_link_add_one_symbol()
1487 h = *hashp; in _bfd_generic_link_add_one_symbol()
1496 if (hashp != NULL) in _bfd_generic_link_add_one_symbol()
1497 *hashp = NULL; in _bfd_generic_link_add_one_symbol()
1511 if (hashp != NULL) in _bfd_generic_link_add_one_symbol()
1512 *hashp = h; in _bfd_generic_link_add_one_symbol()
1856 if (hashp != NULL) in _bfd_generic_link_add_one_symbol()
1857 *hashp = sub; in _bfd_generic_link_add_one_symbol()
Dlibcoff.h965 value, string, cp, coll, hashp)\ argument
967 (info, abfd, name, flags, section, value, string, cp, coll, hashp))
Dsunos.c1056 struct bfd_link_hash_entry **hashp) in sunos_add_one_symbol() argument
1071 if (hashp != NULL) in sunos_add_one_symbol()
1072 *hashp = (struct bfd_link_hash_entry *) h; in sunos_add_one_symbol()
1140 hashp)) in sunos_add_one_symbol()
DChangeLog-94955684 SHARABLE_CONFLICTS specially if BSF_CONSTRUCTOR is set. Set hashp
7099 * linker.c (_bfd_generic_link_add_one_symbol): If hashp and *hashp
7101 in the hash table and has stored the entry in *hashp.
DChangeLog-00014586 Use hashp->root.next, not hashp->next to walk the hash chain.