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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dmemdebug.c167 void *curl_domalloc(size_t wantedsize, int line, const char *source) argument
172 assert(wantedsize != 0);
178 size = sizeof(struct memdebug)+wantedsize;
183 mt_malloc_fill(mem->mem, wantedsize);
184 mem->size = wantedsize;
189 source, line, wantedsize,
274 void *curl_dorealloc(void *ptr, size_t wantedsize, argument
279 size_t size = sizeof(struct memdebug)+wantedsize;
281 assert(wantedsize != 0);
302 source, line, (void *)ptr, wantedsize,
[all...]
H A Dformdata.c1491 size_t wantedsize; local
1496 wantedsize = size * nitems;
1503 gotsize = readfromfile(form, buffer, wantedsize);
1511 if((form->data->length - form->sent ) > wantedsize - gotsize) {
1514 wantedsize - gotsize);
1516 form->sent += wantedsize-gotsize;
1518 return wantedsize;

Completed in 73 milliseconds