HomeSort by: relevance | last modified time | path
    Searched defs:in_tot (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/gzip/
gzip.c 580 off_t in_tot = 0, out_tot = 0; local
634 in_tot = -1;
657 in_tot = -1;
665 in_tot += in_size;
673 in_tot = -1;
686 in_tot = -1;
708 in_tot = -1;
717 (int)in_tot & 0xff,
718 (int)(in_tot >> 8) & 0xff,
719 (int)(in_tot >> 16) & 0xff
754 off_t out_tot = -1, in_tot = 0; local
1773 off_t in_tot; local
2187 static off_t in_tot, out_tot; local
    [all...]
  /src/external/zlib/pigz/dist/
pigz.c 495 off_t in_tot; /* total bytes read from input */ member in struct:__anon24661
2190 read, update g.in_tot, and return g.in_left -- g.in_eof is set to true when
2253 g.in_tot += g.in_left;
2263 g.in_tot = 0;
2629 (method == 8 && g.in_tot > (len + (len >> 10) + 12)) ||
2630 (method == 257 && g.in_tot > len + (len >> 1) + 3))
2633 (intmax_t)g.in_tot, (intmax_t)len, tag);
2636 (intmax_t)g.in_tot, (intmax_t)len,
2637 len == 0 ? 0 : 100 * (len - g.in_tot)/(double)len,
2642 g.in_tot, len, tag)
    [all...]

Completed in 31 milliseconds