Home
last modified time | relevance | path

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

/rockchip-linux_mpp/utils/
H A Ddictionary.c72 unsigned * new_hash ; in dictionary_grow() local
76 new_hash = (unsigned*) calloc(d->size * 2, sizeof * d->hash); in dictionary_grow()
77 if (!new_val || !new_key || !new_hash) { in dictionary_grow()
83 if (new_hash) in dictionary_grow()
84 free(new_hash); in dictionary_grow()
90 memcpy(new_hash, d->hash, d->size * sizeof(unsigned)); in dictionary_grow()
99 d->hash = new_hash; in dictionary_grow()