Home | History | Annotate | Download | only in src

Lines Matching refs:total

371 /* bzip() a data to a file, returning the total number of compressed bytes
379 size_t total = 0;
402 while ( num_bytes > total ) {
403 if (num_bytes - total > size) {
406 len = num_bytes - total;
408 BZ2_bzWrite ( &bzerror, b, &data[total], len );
413 total += len;
421 return total;
427 /* bunzip() a file to '*data', returning the total number of uncompressed bytes
437 size_t total=0;
470 if (total + nBuf > size) {
479 memcpy(&uncompress[total], buf, nBuf);
480 total += nBuf;
488 ret = total;
503 * Returns the total number of bytes in memory .