Home | History | Annotate | Download | only in bfd

Lines Matching refs:_index

465   unsigned int _index;
468 _index = hash % table->size;
469 for (hashp = table->table[_index];
507 unsigned int _index;
514 _index = hash % table->size;
515 hashp->next = table->table[_index];
516 table->table[_index] = hashp;
553 _index = chain->hash % newsize;
554 chain_end->next = newtable[_index];
555 newtable[_index] = chain;
571 unsigned int _index;
574 _index = ent->hash % table->size;
575 for (pph = &table->table[_index]; *pph != NULL; pph = &(*pph)->next)
584 _index = ent->hash % table->size;
585 ent->next = table->table[_index];
586 table->table[_index] = ent;
596 unsigned int _index;
599 _index = old->hash % table->size;
600 for (pph = &table->table[_index];
672 unsigned int _index;
675 for (_index = 0; _index < ARRAY_SIZE (hash_size_primes) - 1; ++_index)
676 if (hash_size <= hash_size_primes[_index])
679 bfd_default_hash_table_size = hash_size_primes[_index];