Home
last modified time | relevance | path

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

/external/qemu/android/utils/
Dreflist.c74 int newmax; in areflist_grow() local
83 newmax = oldmax; in areflist_grow()
84 while (newmax < newcount) in areflist_grow()
85 newmax += (newmax >> 1) + 4; in areflist_grow()
87 AARRAY_RENEW(items, newmax); in areflist_grow()
93 l->max = (uint16_t) newmax; in areflist_grow()
/external/e2fsprogs/e2fsck/
Dprofile_helpers.c91 int newmax; in add_to_list() local
94 newmax = list->max + 10; in add_to_list()
95 newlist = realloc(list->list, newmax * sizeof(char *)); in add_to_list()
98 list->max = newmax; in add_to_list()