Home
last modified time | relevance | path

Searched refs:second_hash (Results 1 – 2 of 2) sorted by relevance

/external/elfutils/lib/
Ddynamicsizehash_concurrent.c59 HASHTYPE second_hash = 1 + hval % (htab->size - 2); in lookup() local
63 if (idx <= second_hash) in lookup()
64 idx = htab->size + idx - second_hash; in lookup()
66 idx -= second_hash; in lookup()
120 HASHTYPE second_hash = 1 + hval % (htab->size - 2); in insert_helper() local
124 if (idx <= second_hash) in insert_helper()
125 idx = htab->size + idx - second_hash; in insert_helper()
127 idx -= second_hash; in insert_helper()
/external/protobuf/src/google/protobuf/stubs/
Dhash.h97 size_t second_hash = hash<Second>()(key.second);
101 return first_hash * ((1 << 16) - 1) + second_hash;