| 1394 | } |
| 1395 | |
| 1396 | uint64_t dictObjHash(const void *key) { |
| 1397 | const robj *o = (const robj*)key; |
| 1398 | void *ptr = ptrFromObj(o); |
| 1399 | return dictGenHashFunction(ptr, sdslen((sds)ptr)); |
| 1400 | } |
| 1401 | |
| 1402 | uint64_t dictSdsHash(const void *key) { |
| 1403 | return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); |
nothing calls this directly
no test coverage detected