Home
last modified time | relevance | path

Searched refs:dictGenHashFunction (Results 1 – 10 of 10) sorted by relevance

/f-stack/app/redis-5.0.5/deps/hiredis/
H A Ddict.h114 static unsigned int dictGenHashFunction(const unsigned char *buf, int len);
H A Ddict.c53 static unsigned int dictGenHashFunction(const unsigned char *buf, int len) { in dictGenHashFunction() function
H A Dasync.c65 return dictGenHashFunction((const unsigned char *)key, in callbackHash()
/f-stack/app/redis-5.0.5/utils/hashtable/
H A Drehashing.c11 key = dictGenHashFunction(&key,sizeof(key)); in dictKeyHash()
/f-stack/app/redis-5.0.5/src/
H A Ddict.h171 uint64_t dictGenHashFunction(const void *key, int len);
H A Ddict.c90 uint64_t dictGenHashFunction(const void *key, int len) { in dictGenHashFunction() function
1118 return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); in hashCallback()
H A Dlatency.c45 return dictGenHashFunction(key, strlen(key)); in dictStringHash()
H A Dserver.c522 return dictGenHashFunction(o->ptr, sdslen((sds)o->ptr)); in dictObjHash()
526 return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); in dictSdsHash()
555 return dictGenHashFunction(o->ptr, sdslen((sds)o->ptr)); in dictEncObjHash()
562 return dictGenHashFunction((unsigned char*)buf, len); in dictEncObjHash()
567 hash = dictGenHashFunction(o->ptr, sdslen((sds)o->ptr)); in dictEncObjHash()
H A Dmodule.c5023 return dictGenHashFunction((unsigned char*)key, strlen((char*)key)); in dictCStringKeyHash()
H A Dredis-cli.c408 return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); in dictSdsHash()