| 1066 | } |
| 1067 | |
| 1068 | uint64_t dictGetHash(dict *d, const void *key) { |
| 1069 | return dictHashKey(d, key); |
| 1070 | } |
| 1071 | |
| 1072 | /* Finds the dictEntry reference by using pointer and pre-calculated hash. |
| 1073 | * oldkey is a dead pointer and should not be accessed. |
no outgoing calls
no test coverage detected