Lines Matching refs:_index
555 unsigned int _index; in bfd_hash_lookup() local
558 _index = hash % table->size; in bfd_hash_lookup()
559 for (hashp = table->table[_index]; in bfd_hash_lookup()
609 unsigned int _index; in bfd_hash_insert() local
616 _index = hash % table->size; in bfd_hash_insert()
617 hashp->next = table->table[_index]; in bfd_hash_insert()
618 table->table[_index] = hashp; in bfd_hash_insert()
655 _index = chain->hash % newsize; in bfd_hash_insert()
656 chain_end->next = newtable[_index]; in bfd_hash_insert()
657 newtable[_index] = chain; in bfd_hash_insert()
684 unsigned int _index; in bfd_hash_rename() local
687 _index = ent->hash % table->size; in bfd_hash_rename()
688 for (pph = &table->table[_index]; *pph != NULL; pph = &(*pph)->next) in bfd_hash_rename()
697 _index = ent->hash % table->size; in bfd_hash_rename()
698 ent->next = table->table[_index]; in bfd_hash_rename()
699 table->table[_index] = ent; in bfd_hash_rename()
720 unsigned int _index; in bfd_hash_replace() local
723 _index = old->hash % table->size; in bfd_hash_replace()
724 for (pph = &table->table[_index]; in bfd_hash_replace()