Home
last modified time | relevance | path

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

/redis-3.2.3/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
/redis-3.2.3/src/
H A Ddict.c266 h = dictHashKey(d, de->key) & d->ht[1].sizemask; in dictRehash()
420 h = dictHashKey(d, key); in dictGenericDelete()
499 h = dictHashKey(d, key); in dictFind()
975 h = dictHashKey(d, key); in _dictKeyIndex()
H A Ddict.h139 #define dictHashKey(d, key) (d)->type->hashFunction(key) macro