Lines Matching refs:key
85 void nghttp2_map_entry_init(nghttp2_map_entry *entry, key_type key) in nghttp2_map_entry_init() argument
87 entry->key = key; in nghttp2_map_entry_init()
93 static uint32_t hash(int32_t key, uint32_t mod) in hash() argument
95 uint32_t h = (uint32_t)key; in hash()
104 uint32_t h = hash(entry->key, tablelen); in insert()
111 if (p->key == entry->key) { in insert()
168 nghttp2_map_entry *nghttp2_map_find(nghttp2_map *map, key_type key) in nghttp2_map_find() argument
172 h = hash(key, map->tablelen); in nghttp2_map_find()
174 if (entry->key == key) { in nghttp2_map_find()
181 int nghttp2_map_remove(nghttp2_map *map, key_type key) in nghttp2_map_remove() argument
186 h = hash(key, map->tablelen); in nghttp2_map_remove()
189 if ((*dst)->key != key) { in nghttp2_map_remove()