/illumos-gate/usr/src/contrib/zlib/ |
H A D | zlib.h | 87 z_const Bytef *next_in; /* next input byte */ 91 Bytef *next_out; /* next output byte will go here */ 119 Bytef *extra; /* pointer to extra field or Z_NULL if none */ 122 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */ 124 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ 611 const Bytef *dictionary, 655 Bytef *dictionary, 887 const Bytef *dictionary, 910 Bytef *dictionary, 1229 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, [all …]
|
H A D | zutil.c | 147 Bytef* dest; in zmemcpy() 148 const Bytef* source; 158 const Bytef* s1; in zmemcmp() 159 const Bytef* s2; 171 Bytef* dest; in zmemzero()
|
H A D | zutil.h | 232 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 233 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 234 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
|
H A D | deflate.h | 101 Bytef *pending_buf; /* output still pending */ 103 Bytef *pending_out; /* next pending byte to output to the stream */ 117 Bytef *window; 274 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
|
H A D | deflate.c | 87 local unsigned read_buf OF((z_streamp strm, Bytef *buf, unsigned size)); 193 zmemzero((Bytef *)s->head, \ 317 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); 416 const Bytef *dictionary; 453 strm->next_in = (z_const Bytef *)dictionary; 485 Bytef *dictionary; 719 Bytef *str; 1168 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); 1204 Bytef *buf; 1279 register Bytef *scan = s->window + s->strstart; /* current string */ [all …]
|
H A D | adler32.c | 61 uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf, z_size_t len) in adler32_z() 129 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) in adler32()
|
H A D | zconf.h | 165 # define Bytef z_Bytef macro 423 # define Bytef Byte FAR macro 425 typedef Byte FAR Bytef; typedef
|
H A D | inflate.c | 382 local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy) in updatewindow() 774 state->head->name[state->length++] = (Bytef)len; in inflate() 796 state->head->comment[state->length++] = (Bytef)len; in inflate() 1295 int ZEXPORT inflateGetDictionary(z_streamp strm, Bytef *dictionary, in inflateGetDictionary() 1316 int ZEXPORT inflateSetDictionary(z_streamp strm, const Bytef *dictionary, in inflateSetDictionary()
|
H A D | ChangeLog | 1155 - use define instead of typedef for Bytef also for MSC small/medium (Tom Lane) 1216 - read_buf buf parameter of type Bytef* instead of charf* 1217 - zmemcpy parameters are of type Bytef*, not charf* (Joseph Strout) 1365 - fixed declarations using Bytef in infutil.c (pb with MSDOS medium model) 1366 - Bytef is define's instead of typedef'd only for Borland C 1377 - Bytef is define'd instead of typedef'ed (work around Borland bug)
|
H A D | trees.c | 874 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
|
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.h | 124 #define Bytef z_Bytef macro 310 #define Bytef Byte FAR macro 312 typedef Byte FAR Bytef; typedef 403 Bytef *next_in; /* next input byte */ 407 Bytef *next_out; /* next output byte should be put there */ 800 const Bytef *dictionary, uInt dictLength)); 933 const Bytef *dictionary, uInt dictLength)); 1131 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
|
H A D | zlib.c | 229 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 230 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 231 extern void zmemzero OF((Bytef* dest, uInt len)); 261 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len)); 364 Bytef *pending_buf; /* output still pending */ 366 Bytef *pending_out; /* next pending byte to output to the stream */ 380 Bytef *window; 718 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size)); 831 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof (*s->head)); 916 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof (Byte)); [all …]
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.h | 117 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 D | zlib.c | 121 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 …]
|
/illumos-gate/usr/src/cmd/boot/fiocompress/ |
H A D | fiocompress.c | 215 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()
|
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/ |
H A D | ratz.c | 400 # define Bytef Byte FAR macro 402 typedef Byte FAR Bytef; typedef 506 Bytef *next_in; /* next input byte */ 510 Bytef *next_out; /* next output byte should be put there */ 775 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 776 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 777 extern void zmemzero OF((Bytef* dest, uInt len)); 820 Bytef* dest; in zmemcpy() 821 const Bytef* source; 831 const Bytef* s1; in zmemcmp() [all …]
|
/illumos-gate/usr/src/cmd/bhyve/common/ |
H A D | rfb.c | 865 c->rc_zstream.next_in = (Bytef *)p; in rfb_send_rect() 867 c->rc_zstream.next_out = (Bytef *)zbufp; in rfb_send_rect() 941 c->rc_zstream.next_in = (Bytef *)data; in rfb_send_all() 944 c->rc_zstream.next_out = (Bytef *)c->rc_zbuf; in rfb_send_all() 1084 (Bytef *)p, cellwidth * sizeof (uint32_t)); in rfb_send_screen()
|
/illumos-gate/usr/src/lib/libdwarf/common/ |
H A D | dwarf_init_finish.c | 1713 Bytef *basesrc = (Bytef *)section->dss_data; in do_decompress_zlib() 1714 Bytef *src = (Bytef *)basesrc; in do_decompress_zlib() 1719 Bytef *dest = 0; in do_decompress_zlib()
|
/illumos-gate/usr/src/lib/libctf/common/ |
H A D | ctf_lib.c | 185 czd->czd_zstr.next_out = (Bytef *)czd->czd_next; in ctf_zdata_grow() 198 czd->czd_zstr.next_in = (Bytef *)buf; in ctf_zdata_compress_buffer()
|
/illumos-gate/usr/src/boot/common/ |
H A D | part.c | 191 if (crc32(hdr->hdr_crc_self, (const Bytef *)hdr, sz) != crc) { in gpt_checkhdr()
|