Home | History | Annotate | Download | only in bfd

Lines Matching defs:_index

233    HASH and bucket _INDEX) into our hash TABLE.  */
238 uint64_t hash, unsigned int len, unsigned int _index)
260 _index = hash & (nbuckets - 1);
263 uint64_t candlen = key_lens[_index];
266 _index = (_index + 1) & (nbuckets - 1);
271 table->key_lens[_index] = (hash << 32) | (uint32_t)len;
272 table->values[_index] = hashp;
401 unsigned int _index;
409 _index = hash & (nbuckets - 1);
412 uint64_t candlen = key_lens[_index];
414 && !memcmp (values[_index]->str, string, len))
416 hashp = values[_index];
423 _index = (_index + 1) & (nbuckets - 1);
426 hashp = sec_merge_hash_insert (table, string, hash, len, _index);