Home | History | Annotate | Download | only in libkmod

Lines Matching refs:total

94 	size_t total = 0;
115 char *tmp = realloc(p, total + write_size);
120 memcpy(tmp + total, out_buf, write_size);
121 total += write_size;
136 file->size = total;
177 off_t did = 0, total = 0;
189 if (did == total) {
190 void *tmp = realloc(p, total + READ_STEP);
195 total += READ_STEP;
199 r = gzread(file->gzf, p + did, total - did);