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

/external/curl/lib/
H A Dmemdebug.c165 void *curl_domalloc(size_t wantedsize, int line, const char *source) argument
170 assert(wantedsize != 0);
176 size = sizeof(struct memdebug)+wantedsize;
181 mt_malloc_fill(mem->mem, wantedsize);
182 mem->size = wantedsize;
187 source, line, wantedsize,
272 void *curl_dorealloc(void *ptr, size_t wantedsize, argument
277 size_t size = sizeof(struct memdebug)+wantedsize;
279 assert(wantedsize != 0);
300 source, line, (void *)ptr, wantedsize,
[all...]
H A Dformdata.c1481 size_t wantedsize; local
1486 wantedsize = size * nitems;
1493 gotsize = readfromfile(form, buffer, wantedsize);
1501 if((form->data->length - form->sent) > wantedsize - gotsize) {
1504 wantedsize - gotsize);
1506 form->sent += wantedsize-gotsize;
1508 return wantedsize;

Completed in 53 milliseconds