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

  /src/external/gpl3/binutils.old/dist/zlib/examples/
zran.c 139 off_t totin, totout; /* our own total counters to avoid 4GB limit */ local
140 off_t last; /* totout value of last access point */
159 totin = totout = last = 0;
191 totout += strm.avail_out;
194 totout -= strm.avail_out;
214 except for up to seven bits) -- the totout == 0 provides an
220 (totout == 0 || totout - last > span)) {
222 totout, strm.avail_out, window);
227 last = totout;
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/examples/
zran.c 139 off_t totin, totout; /* our own total counters to avoid 4GB limit */ local
140 off_t last; /* totout value of last access point */
159 totin = totout = last = 0;
191 totout += strm.avail_out;
194 totout -= strm.avail_out;
214 except for up to seven bits) -- the totout == 0 provides an
220 (totout == 0 || totout - last > span)) {
222 totout, strm.avail_out, window);
227 last = totout;
    [all...]
  /src/external/gpl3/binutils/dist/zlib/examples/
zran.c 138 off_t totout = 0; // total bytes uncompressed local
188 totout += before - strm.avail_out;
192 (index == NULL || totout - last >= span)) {
199 totout, strm.avail_out, win);
204 last = totout;
228 index->length = totout;
  /src/external/gpl3/gdb/dist/zlib/examples/
zran.c 138 off_t totout = 0; // total bytes uncompressed local
188 totout += before - strm.avail_out;
192 (index == NULL || totout - last >= span)) {
199 totout, strm.avail_out, win);
204 last = totout;
228 index->length = totout;
  /src/common/dist/zlib/examples/
zran.c 149 off_t totout = 0; // total bytes uncompressed local
202 totout += before - index->strm.avail_out;
206 (index->have == 0 || totout - last >= span)) {
212 index = add_point(index, totin - index->strm.avail_in, totout, beg,
218 last = totout;
227 beg = totout; // reset history
243 index->length = totout;

Completed in 22 milliseconds