Home | History | Annotate | Download | only in bfd

Lines Matching defs:hashp

463   struct bfd_hash_entry *hashp;
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;
509 hashp = (*table->newfunc) (NULL, table, string);
510 if (hashp == NULL)
512 hashp->string = string;
513 hashp->hash = hash;
515 hashp->next = table->table[_index];
516 table->table[_index] = hashp;
531 return hashp;
539 return hashp;
561 return hashp;