Searched refs:double_hash (Results 1 - 4 of 4) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| H A D | set.c | 213 uint32_t double_hash; local in function:set_search 225 double_hash = 1 + hash % ht->rehash; 227 hash_address = (hash_address + double_hash) % ht->size; 304 uint32_t double_hash; local in function:set_add 331 double_hash = 1 + hash % ht->rehash; 333 hash_address = (hash_address + double_hash) % ht->size;
|
| H A D | hash_table.c | 249 uint32_t double_hash; local in function:hash_table_search 261 double_hash = 1 + hash % ht->rehash; 263 hash_address = (hash_address + double_hash) % ht->size; 344 uint32_t double_hash; local in function:hash_table_insert 374 double_hash = 1 + hash % ht->rehash; 376 hash_address = (hash_address + double_hash) % ht->size;
|
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | hash_table.c | 315 uint32_t double_hash = 1 + util_fast_urem32(hash, ht->rehash, local in function:hash_table_search 330 hash_address += double_hash; 369 uint32_t double_hash = 1 + util_fast_urem32(hash, ht->rehash, local in function:hash_table_insert_rehash 382 hash_address += double_hash; 445 uint32_t double_hash = 1 + util_fast_urem32(hash, ht->rehash, local in function:hash_table_insert 478 hash_address += double_hash;
|
| H A D | set.c | 270 uint32_t double_hash = util_fast_urem32(hash, ht->rehash, local in function:set_search 284 hash_address += double_hash; 313 uint32_t double_hash = util_fast_urem32(hash, ht->rehash, local in function:set_add_rehash 324 hash_address = hash_address + double_hash; 407 uint32_t double_hash = util_fast_urem32(hash, ht->rehash, local in function:set_search_or_add 429 hash_address = hash_address + double_hash;
|
Completed in 5 milliseconds