| 1434 | } |
| 1435 | |
| 1436 | uint64_t dictGetHash(dict *d, const void *key) { |
| 1437 | return dictHashKey(d, key); |
| 1438 | } |
| 1439 | |
| 1440 | /* Finds the dictEntry reference by using pointer and pre-calculated hash. |
| 1441 | * oldkey is a dead pointer and should not be accessed. |
no outgoing calls
no test coverage detected