return DICT_ERR if expand was not performed */
| 244 | |
| 245 | /* return DICT_ERR if expand was not performed */ |
| 246 | int HashTableExpand |
| 247 | ( |
| 248 | dict *d, |
| 249 | unsigned long size |
| 250 | ) { |
| 251 | return _HashTableExpand(d, size, NULL); |
| 252 | } |
| 253 | |
| 254 | /* Performs N steps of incremental rehashing. Returns 1 if there are still |
| 255 | * keys to move from the old to the new hash table, otherwise 0 is returned. |
no test coverage detected