Home
last modified time | relevance | path

Searched refs:Bytef (Results 1 – 13 of 13) sorted by relevance

/titanic_41/usr/src/uts/common/zmod/
H A Dzlib.h85 Bytef *next_in; /* next input byte */
89 Bytef *next_out; /* next output byte should be put there */
116 Bytef *extra; /* pointer to extra field or Z_NULL if none */
119 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
121 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
541 const Bytef *dictionary,
739 const Bytef *dictionary,
1011 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1012 const Bytef *source, uLong sourceLen));
1026 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
[all …]
H A Dzutil.c156 Bytef* dest; in zmemcpy()
157 const Bytef* source;
167 const Bytef* s1; in zmemcmp()
168 const Bytef* s2;
180 Bytef* dest; in zmemzero()
H A Ddeflate.h97 Bytef *pending_buf; /* output still pending */
99 Bytef *pending_out; /* next pending byte to output to the stream */
113 Bytef *window;
H A Ddeflate.c90 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
206 (void) zmemzero((Bytef *)s->head, \
293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
323 const Bytef *dictionary;
926 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
964 Bytef *buf;
1038 register Bytef *scan = s->window + s->strstart; /* current string */
1039 register Bytef *match; /* matched string */
1055 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1059 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
[all …]
H A Dzconf.h104 typedef Byte Bytef; typedef
H A Dadler32.c59 const Bytef *buf;
H A Dinflate.c1198 const Bytef *dictionary;
/titanic_41/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h126 #define Bytef z_Bytef macro
312 #define Bytef Byte FAR macro
314 typedef Byte FAR Bytef; typedef
405 Bytef *next_in; /* next input byte */
409 Bytef *next_out; /* next output byte should be put there */
802 const Bytef *dictionary, uInt dictLength));
935 const Bytef *dictionary, uInt dictLength));
1133 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
H A Dzlib.c231 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
232 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
233 extern void zmemzero OF((Bytef* dest, uInt len));
263 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
366 Bytef *pending_buf; /* output still pending */
368 Bytef *pending_out; /* next pending byte to output to the stream */
382 Bytef *window;
720 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
833 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof (*s->head));
918 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof (Byte));
[all …]
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.h117 typedef Byte FAR Bytef; typedef
160 Bytef *next_in; /* next input byte */
164 Bytef *next_out; /* next output byte should be put there */
610 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
H A Dzlib.c121 typedef uLong (*check_func) OF((uLong check, Bytef *buf, uInt len));
219 Bytef *pending_buf; /* output still pending */
220 Bytef *pending_out; /* next pending byte to output to the stream */
234 Bytef *window;
633 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
944 register Bytef *scan = s->window + s->strstart; /* current string */
945 register Bytef *match; /* matched string */
960 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
964 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
2661 Bytef *pad; /* pad structure to a power of 2 (4 bytes for */
[all …]
/titanic_41/usr/src/cmd/boot/fiocompress/
H A Dfiocompress.c215 ret = compress2(dstbuf, &dlen, (Bytef *)srcaddr, slen, 9); in do_comp()
284 ret = uncompress(dstbuf, &dlen, (Bytef *)srcaddr, slen); in do_decomp()
304 if ((ret = uncompress(dstbuf, &dlen, (Bytef *)srcaddr, slen)) != Z_OK) { in do_decomp()
/titanic_41/usr/src/tools/ctf/cvt/
H A Dctf.c462 rb->rb_zstr.next_out = (Bytef *)(rb->rb_ptr); in rbzs_grow()
485 rb->rb_zstr.next_out = (Bytef *)rb->rb_ptr; in compress_buffer()
487 rb->rb_zstr.next_in = (Bytef *)buf; in compress_buffer()
1210 zstr.next_in = (Bytef *)cbuf; in decompress_ctf()
1212 zstr.next_out = (Bytef *)dbuf; in decompress_ctf()