HomeSort by relevance Sort by last modified time
    Searched defs:hashp (Results 1 - 2 of 2) sorted by null

  /toolchain/binutils/binutils-2.25/bfd/
hash.c 463 struct bfd_hash_entry *hashp; local
469 for (hashp = table->table[_index];
470 hashp != NULL;
471 hashp = hashp->next)
473 if (hashp->hash == hash
474 && strcmp (hashp->string, string) == 0)
475 return hashp;
506 struct bfd_hash_entry *hashp; local
509 hashp = (*table->newfunc) (NULL, table, string)
    [all...]
merge.c 141 struct sec_merge_hash_entry *hashp; local
195 for (hashp = (struct sec_merge_hash_entry *) table->table.table[_index];
196 hashp != NULL;
197 hashp = (struct sec_merge_hash_entry *) hashp->root.next)
199 if (hashp->root.hash == hash
200 && len == hashp->len
201 && memcmp (hashp->root.string, string, len) == 0)
205 if (hashp->alignment < alignment)
210 hashp->len = 0
    [all...]

Completed in 661 milliseconds