Searched refs:curalloc (Results 1 - 1 of 1) sorted by relevance

/netbsd-6-1-5-RELEASE/usr.bin/nbperf/
H A Dnbperf.c122 size_t curlen = 0, curalloc = 0; local
216 if (curlen == curalloc) {
217 if (curalloc < 256)
218 curalloc = 256;
220 curalloc += curalloc;
221 keys = realloc(keys, curalloc * sizeof(*keys));
225 curalloc * sizeof(*keylens));

Completed in 49 milliseconds