Searched refs:next_in (Results 1 - 22 of 22) sorted by relevance

/opensolaris-onvv-gate/usr/src/uts/common/zmod/
H A Dzmod.c46 zs.next_in = (uchar_t *)src;
77 zs.next_in = (uchar_t *)src;
H A Dinffast.c74 unsigned char FAR *in; /* local strm->next_in */
101 in = strm->next_in - OFF;
296 strm->next_in = in + OFF;
H A Dinflate.c85 * - Check next_in and next_out for Z_NULL on entry to inflate()
414 next = strm->next_in; \
425 strm->next_in = next; \
585 (strm->next_in == Z_NULL && strm->avail_in != 0))
1318 len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
1320 strm->next_in += len;
H A Dzlib.h85 Bytef *next_in; /* next input byte */ member in struct:z_stream_s
86 uInt avail_in; /* number of bytes available at next_in */
131 The application must update next_in and avail_in when avail_in has
254 - Compress more input starting at next_in and update next_in and avail_in
256 enough room in the output buffer), next_in and avail_in are updated and
323 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
348 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
349 the caller. If next_in is not Z_NULL and avail_in is large enough (the exact
360 the zlib header if present: this will be done by inflate(). (So next_in an
[all...]
H A Ddeflate.c218 /* To do: ignore strm->next_in if we use it as window */
572 (strm->next_in == Z_NULL && strm->avail_in != 0) ||
959 * allocating a large strm->next_in buffer and copying from it.
975 strm->adler = adler32(strm->adler, strm->next_in, len);
979 strm->adler = crc32(strm->adler, strm->next_in, len);
982 zmemcpy(buf, strm->next_in, len);
983 strm->next_in += len;
/opensolaris-onvv-gate/usr/src/cmd/ssh/libssh/common/
H A Dcompress.c95 outgoing_stream.next_in = buffer_ptr(input_buffer);
135 incoming_stream.next_in = buffer_ptr(input_buffer);
/opensolaris-onvv-gate/usr/src/common/fs/
H A Ddecompress.c159 zsp->next_in = NULL;
197 zsp->next_in = NULL;
241 zsp->next_in = (unsigned char *)filep->fi_memp;
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/comp/
H A Dc_zlib.c160 state->istream.next_in = Z_NULL;
172 state->ostream.next_in = Z_NULL;
216 state->ostream.next_in = in;
244 state->istream.next_in = in;
325 stream.next_in = (Bytef*)source;
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.h160 Bytef *next_in; /* next input byte */ member in struct:z_stream_s
161 uInt avail_in; /* number of bytes available at next_in */
180 The application must update next_in and avail_in when avail_in has
274 - Compress more input starting at next_in and update next_in and avail_in
276 enough room in the output buffer), next_in and avail_in are updated and
343 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible.
377 - Decompress more input starting at next_in and update next_in and avail_in
379 enough room in the output buffer), next_in i
[all...]
H A Ddeflate.c259 state->strm.next_in = rptr;
323 state->strm.next_in = rptr;
H A Dzlib.c585 /* To do: ignore strm->next_in if we use it as window */
739 if (strm->next_in == Z_NULL && strm->avail_in != 0) {
890 state->adler = adler32(state->adler, strm->next_in, len);
892 zmemcpy(buf, strm->next_in, len);
893 strm->next_in += len;
2856 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
2865 if (z == Z_NULL || z->next_in == Z_NULL)
2967 * This subroutine adds the data at next_in/avail_in to the output history
3002 p = z->next_in;
3018 z->total_in += p - z->next_in;
[all...]
/opensolaris-onvv-gate/usr/src/common/bzip2/
H A Dbzlib.h53 char *next_in; member in struct:__anon2112
H A Dbzlib.c464 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
465 s->strm->next_in++;
482 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
483 s->strm->next_in++;
1149 bzf->strm.next_in = buf;
1299 bzf->strm.next_in = bzf->buf;
1360 bzf->strm.next_in = bzf->buf;
1401 *unused = bzf->strm.next_in;
1438 strm.next_in = source;
1486 strm.next_in
[all...]
H A Ddecompress.c58 (*((UChar*)(s->strm->next_in)))); \
60 s->strm->next_in++; \
/opensolaris-onvv-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Ddeflate.c432 state->strm.next_in = rptr;
458 state->strm.next_in = mp->b_rptr;
579 state->strm.next_in = rptr;
601 state->strm.next_in = mp->b_rptr;
887 state->strm.next_in = rptr;
932 state->strm.next_in = mi->b_rptr;
H A Dzlib.h405 Bytef *next_in; /* next input byte */ member in struct:z_stream_s
406 uInt avail_in; /* number of bytes available at next_in */
430 * The application must update next_in and avail_in when avail_in has
549 * - Compress more input starting at next_in and update next_in and
551 * there is not enough room in the output buffer), next_in and
624 * inconsistent (for example if next_in or next_out was NULL),
663 * - Decompress more input starting at next_in and update next_in and
665 * there is not enough room in the output buffer), next_in i
[all...]
H A Dzlib.c846 /* To do: ignore strm->next_in if we use it as window */
1129 (strm->next_in == Z_NULL && strm->avail_in != 0) ||
1380 * allocating a large strm->next_in buffer and copying from it.
1398 strm->adler = adler32(strm->adler, strm->next_in, len);
1400 zmemcpy(buf, strm->next_in, len);
1401 strm->next_in += len;
3736 #define NEXTBYTE (z->avail_in--, z->total_in++, *z->next_in++)
3746 if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL)
3919 * This subroutine adds the data at next_in/avail_in to the output history
3958 p = z->next_in;
[all...]
/opensolaris-onvv-gate/usr/src/tools/ctf/cvt/
H A Dctf.c487 rb->rb_zstr.next_in = (Bytef *)buf;
1210 zstr.next_in = (Bytef *)cbuf;
1223 zstr.total_in, zstr.total_out, (caddr_t)zstr.next_in - cbuf);
/opensolaris-onvv-gate/usr/src/tools/ctf/dump/
H A Ddump.c966 zstr.next_in = (void *)cd.cd_ctfdata;
/opensolaris-onvv-gate/usr/src/cmd/savecore/
H A Dsavecore.c1020 s->strm.next_in = block;
/opensolaris-onvv-gate/usr/src/lib/libkmsagent/common/SOAP/
H A Dstdsoap2.cpp784 { soap->d_stream->next_in = (Byte*)soap->buf;
1169 soap->d_stream->next_in = (Byte*)(soap->z_buf + soap->bufidx);
7819 soap->bufidx = (char*)soap->d_stream->next_in - soap->z_buf;
13999 soap->d_stream->next_in = Z_NULL;
14036 soap->d_stream->next_in = (Byte*)(soap->z_buf + soap->bufidx);
14125 soap->d_stream->next_in = (Byte*)(soap->z_buf + soap->bufidx);
/opensolaris-onvv-gate/usr/src/uts/common/os/
H A Ddumpsubr.c1941 ps->next_in = buf;

Completed in 294 milliseconds