Lines Matching defs:new_alloc
195 size_t new_alloc;
201 new_alloc = c->workitems_alloc + WORKITEMS_ALLOC_INC;
202 c->workitems = erealloc(c->workitems, new_alloc * each);
203 for (sidx = c->workitems_alloc; sidx < new_alloc; ++sidx)
207 c->workitems_alloc = new_alloc;
231 size_t new_alloc;
237 new_alloc = c->responses_alloc + RESPONSES_ALLOC_INC;
238 c->responses = erealloc(c->responses, new_alloc * each);
239 for (sidx = c->responses_alloc; sidx < new_alloc; ++sidx)
243 c->responses_alloc = new_alloc;