Home
last modified time | relevance | path

Searched refs:dictHashKey (Results 1 – 4 of 4) sorted by relevance

/f-stack/app/redis-5.0.5/deps/hiredis/
H A Ddict.c118 h = dictHashKey(ht, he->key) & n.sizemask; in dictExpand()
188 h = dictHashKey(ht, key) & ht->sizemask; in dictDelete()
248 h = dictHashKey(ht, key) & ht->sizemask; in dictFind()
328 h = dictHashKey(ht, key) & ht->sizemask; in _dictKeyIndex()
H A Ddict.h106 #define dictHashKey(ht, key) (ht)->type->hashFunction(key) macro
/f-stack/app/redis-5.0.5/src/
H A Ddict.c209 h = dictHashKey(d, de->key) & d->ht[1].sizemask; in dictRehash()
302 if ((index = _dictKeyIndex(d, key, dictHashKey(d,key), existing)) == -1) in dictAddRaw()
372 h = dictHashKey(d, key); in dictGenericDelete()
483 h = dictHashKey(d, key); in dictFind()
1004 return dictHashKey(d, key); in dictGetHash()
H A Ddict.h140 #define dictHashKey(d, key) (d)->type->hashFunction(key) macro