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

  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 38 public uint total_out; field in struct:DotZLib.ZStream
DotZLib.cs 38 public uint total_out; field in struct:DotZLib.ZStream
  /src/sys/lib/libsa/
cread.c 382 uint32_t total_out; local in function:read
393 total_out = getLong(s);
399 total_out != s->stream.total_out) {
455 offset += s->stream.total_out;
459 if (offset < s->stream.total_out) {
472 /* this resets total_out to 0! */
482 if (offset > s->stream.total_out) {
483 off_t toskip = offset - s->stream.total_out;
500 if (offset != s->stream.total_out)
    [all...]
cread.c 382 uint32_t total_out; local in function:read
393 total_out = getLong(s);
399 total_out != s->stream.total_out) {
455 offset += s->stream.total_out;
459 if (offset < s->stream.total_out) {
472 /* this resets total_out to 0! */
482 if (offset > s->stream.total_out) {
483 off_t toskip = offset - s->stream.total_out;
500 if (offset != s->stream.total_out)
    [all...]
  /src/sys/net/
zlib.h 369 uLong total_out; /* total nb of bytes output so far */ member in struct:z_stream_s
410 The fields total_in and total_out can be used for statistics or
669 so far (that is, total_out bytes) and returns Z_OK, Z_STREAM_END or
zlib.h 369 uLong total_out; /* total nb of bytes output so far */ member in struct:z_stream_s
410 The fields total_in and total_out can be used for statistics or
669 so far (that is, total_out bytes) and returns Z_OK, Z_STREAM_END or
  /src/common/dist/zlib/
zlib.h 95 uLong total_out; /* total number of bytes output so far */ member in struct:z_stream_s
162 The fields total_in and total_out can be used for statistics or progress
235 allocation functions. total_in, total_out, adler, and msg are initialized.
388 them to use default allocation functions. total_in, total_out, adler, and
492 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
702 set unchanged. total_in, total_out, adler, and msg are initialized.
968 total_in, total_out, adler, and msg are initialized.
zlib.h 95 uLong total_out; /* total number of bytes output so far */ member in struct:z_stream_s
162 The fields total_in and total_out can be used for statistics or progress
235 allocation functions. total_in, total_out, adler, and msg are initialized.
388 them to use default allocation functions. total_in, total_out, adler, and
492 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
702 set unchanged. total_in, total_out, adler, and msg are initialized.
968 total_in, total_out, adler, and msg are initialized.
  /src/usr.sbin/makemandb/
apropos-utils.c 273 long total_out; local in function:unzip
286 total_out = stream.avail_out = stream.avail_in * 2 + 100;
294 total_out <<= 1;
295 outbuf = erealloc(outbuf, total_out);
296 stream.next_out = outbuf + stream.total_out;
297 stream.avail_out = total_out - stream.total_out;
303 if (stream.total_out == 0) {
307 outbuf = erealloc(outbuf, stream.total_out);
308 sqlite3_result_text(pctx, (const char *)outbuf, stream.total_out, free)
    [all...]
apropos-utils.c 273 long total_out; local in function:unzip
286 total_out = stream.avail_out = stream.avail_in * 2 + 100;
294 total_out <<= 1;
295 outbuf = erealloc(outbuf, total_out);
296 stream.next_out = outbuf + stream.total_out;
297 stream.avail_out = total_out - stream.total_out;
303 if (stream.total_out == 0) {
307 outbuf = erealloc(outbuf, stream.total_out);
308 sqlite3_result_text(pctx, (const char *)outbuf, stream.total_out, free)
    [all...]

Completed in 30 milliseconds