Searched refs:cuckoo_first (Results 1 – 1 of 1) sorted by relevance
/third_party/grpc/src/core/ext/transport/chttp2/transport/ |
D | hpack_encoder.cc | 163 const HpackEncoderSlotHash cuckoo_first = HASH_FRAGMENT_2(value_hash); in GetMatchingIndex() local 164 if (Matches<Cmp>(hashtable, value, cuckoo_first)) { in GetMatchingIndex() 165 *index = HpackIndex(hashtable, cuckoo_first); in GetMatchingIndex() 196 const HpackEncoderSlotHash cuckoo_first = HASH_FRAGMENT_2(value_hash); in UpdateAddOrEvict() local 197 if (Matches<Cmp>(hashtable, value, cuckoo_first)) { in UpdateAddOrEvict() 198 UpdateIndex(hashtable, cuckoo_first, new_index); in UpdateAddOrEvict() 201 if (TableEmptyAt<Cmp>(hashtable, cuckoo_first)) { in UpdateAddOrEvict() 203 SetIndex(hashtable, cuckoo_first, value, new_index); in UpdateAddOrEvict() 217 Cmp::Unref(ReplaceOlderIndex<Cmp>(hashtable, value, cuckoo_first, in UpdateAddOrEvict() 220 ValueType old = GetEntry<typename Cmp::Type>(hashtable, cuckoo_first); in UpdateAddOrEvict() [all …]
|