Home
last modified time | relevance | path

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

/rockchip-linux_mpp/utils/
H A Ddictionary.c71 char ** new_key ; in dictionary_grow() local
75 new_key = (char**) calloc(d->size * 2, sizeof * d->key); in dictionary_grow()
77 if (!new_val || !new_key || !new_hash) { in dictionary_grow()
81 if (new_key) in dictionary_grow()
82 free(new_key); in dictionary_grow()
89 memcpy(new_key, d->key, d->size * sizeof(char *)); in dictionary_grow()
98 d->key = new_key; in dictionary_grow()