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