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()
213 uint32_t hash_address = start_hash_address; in hash_table_search() local218 struct hash_entry *entry = ht->table + hash_address; in hash_table_search()230 hash_address = (hash_address + double_hash) % ht->size; in hash_table_search()231 } while (hash_address != start_hash_address); in hash_table_search()296 uint32_t start_hash_address, hash_address; in hash_table_insert() local308 hash_address = start_hash_address; in hash_table_insert()310 struct hash_entry *entry = ht->table + hash_address; in hash_table_insert()343 hash_address = (hash_address + double_hash) % ht->size; in hash_table_insert()344 } while (hash_address != start_hash_address); in hash_table_insert()