Searched refs:hash_address (Results 1 – 2 of 2) sorted by relevance
166 uint32_t hash_address; in set_search() local168 hash_address = hash % ht->size; in set_search()172 struct set_entry *entry = ht->table + hash_address; in set_search()184 hash_address = (hash_address + double_hash) % ht->size; in set_search()185 } while (hash_address != hash % ht->size); in set_search()253 uint32_t hash_address; in set_add() local262 hash_address = hash % ht->size; in set_add()264 struct set_entry *entry = ht->table + hash_address; in set_add()294 hash_address = (hash_address + double_hash) % ht->size; in set_add()295 } while (hash_address != hash % ht->size); in set_add()
212 uint32_t hash_address = start_hash_address; in hash_table_search() local217 struct hash_entry *entry = ht->table + hash_address; in hash_table_search()229 hash_address = (hash_address + double_hash) % ht->size; in hash_table_search()230 } while (hash_address != start_hash_address); in hash_table_search()295 uint32_t start_hash_address, hash_address; in hash_table_insert() local307 hash_address = start_hash_address; in hash_table_insert()309 struct hash_entry *entry = ht->table + hash_address; in hash_table_insert()342 hash_address = (hash_address + double_hash) % ht->size; in hash_table_insert()343 } while (hash_address != start_hash_address); in hash_table_insert()