Home
last modified time | relevance | path

Searched refs:total_out (Results 1 – 16 of 16) sorted by relevance

/illumos-gate/usr/src/common/fs/
H A Ddecompress.c225 dprintf(" reading at offset %lx\n", zsp->total_out); in cf_read()
276 addr += zsp->total_out; in cf_seek()
280 if (addr < zsp->total_out) { in cf_seek()
284 addr -= zsp->total_out; in cf_seek()
/illumos-gate/usr/src/boot/libsa/
H A Dgzipfs.c309 target = offset + zf->zf_zstream.total_out; in zf_seek()
317 if (target < zf->zf_zstream.total_out && zf_rewind(f) != 0) in zf_seek()
321 while (target > zf->zf_zstream.total_out) { in zf_seek()
323 target - zf->zf_zstream.total_out), NULL); in zf_seek()
328 return (zf->zf_zstream.total_out); in zf_seek()
/illumos-gate/usr/src/uts/common/zmod/
H A Dzmod.c64 *dstlen = zs.total_out; in z_uncompress()
90 *dstlen = zs.total_out; in z_compress_level()
/illumos-gate/usr/src/uts/common/syscall/
H A Dutssys.c825 int total_max, total_out; in uts_fusers() local
900 total_out = 0; in uts_fusers()
902 total_out += fu_data->fud_user_count; in uts_fusers()
904 total_out += fuk_data->fud_user_count; in uts_fusers()
907 if (total_out > total_max) { in uts_fusers()
914 fu_header.fud_user_count = total_out; in uts_fusers()
/illumos-gate/usr/src/cmd/bhyve/
H A Drfb.c863 c->rc_zstream.total_out = 0; in rfb_send_rect()
869 c->rc_zstream.total_out; in rfb_send_rect()
879 zbufp = c->rc_zbuf + c->rc_zstream.total_out; in rfb_send_rect()
887 zlen = htonl(c->rc_zstream.total_out); in rfb_send_rect()
892 c->rc_zstream.total_out) == c->rc_zstream.total_out); in rfb_send_rect()
949 c->rc_zstream.total_out = 0; in rfb_send_all()
963 zlen = htonl(c->rc_zstream.total_out); in rfb_send_all()
968 c->rc_zstream.total_out) == c->rc_zstream.total_out); in rfb_send_all()
/illumos-gate/usr/src/boot/libsa/zfs/
H A Dgzip.c53 *dstlen = zs.total_out; in z_uncompress()
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.h166 uLong total_out; /* total nb of bytes output so far */ member
H A Dzlib.c672 strm->total_in = strm->total_out = 0;
722 strm->total_out += len;
2777 z->total_in = z->total_out = 0;
3033 r = z->total_in; w = z->total_out;
3035 z->total_in = r; z->total_out = w;
3358 z->total_out + (q >= s->read ? q - s->read :
3495 z->total_out + (q >= s->read ? q - s->read :
3583 z->total_out += t;
4351 z->total_out += n;
4379 z->total_out += n;
/illumos-gate/usr/src/contrib/zlib/
H A Dinflate.c124 strm->total_in = strm->total_out = state->total = 0; in inflateResetKeep()
1203 strm->total_out += out; in inflate()
1269 strm->total_out += out; in inflate()
1437 in = strm->total_in; out = strm->total_out; in inflateSync()
1439 strm->total_in = in; strm->total_out = out; in inflateSync()
H A Ddeflate.c514 strm->total_in = strm->total_out = 0;
783 strm->total_out += len;
1754 s->strm->total_out += left;
1766 s->strm->total_out += len;
H A Dzlib.h93 uLong total_out; /* total number of bytes output so far */ member
H A DChangeLog338 - Spell out "number" (instead of "nb") in zlib.h for total_in, total_out
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h409 uLong total_out; /* total nb of bytes output so far */ member
H A Dzlib.c1003 strm->total_in = strm->total_out = 0;
1103 strm->total_out += len;
3636 z->total_in = z->total_out = 0;
3991 r = z->total_in; w = z->total_out;
3993 z->total_in = r; z->total_out = w;
4448 z->total_out + (q >= s->read ? q - s->read :
4593 z->total_out + (q >= s->read ? q - s->read :
4705 z->total_out += t;
5561 z->total_out += n;
5589 z->total_out += n;
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dratz.c512 uLong total_out; /* total nb of bytes output so far */ member
2336 strm->total_in = strm->total_out = state->total = 0;
3300 strm->total_out += out;
3362 strm->total_out += out;
3519 in = strm->total_in; out = strm->total_out;
3521 strm->total_in = in; strm->total_out = out;
/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_lib.c335 *dstlen = zs.total_out; in z_compress()