Home
last modified time | relevance | path

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

/rockchip-linux_mpp/utils/
H A Ddictionary.c70 char ** new_val ; in dictionary_grow() local
74 new_val = (char**) calloc(d->size * 2, sizeof * d->val); in dictionary_grow()
77 if (!new_val || !new_key || !new_hash) { in dictionary_grow()
79 if (new_val) in dictionary_grow()
80 free(new_val); in dictionary_grow()
88 memcpy(new_val, d->val, d->size * sizeof(char *)); in dictionary_grow()
97 d->val = new_val; in dictionary_grow()