Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/zlib/
H A Dzlib.h87 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 */
656 Bytef *dictionary,
909 Bytef *dictionary,
1228 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1243 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1266 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1284 ZEXTERN int ZEXPORT uncompress2 OF((Bytef *dest, uLongf *destLen,
1711 ZEXTERN uLong ZEXPORT adler32_z OF((uLong adler, const Bytef *buf,
[all …]
H A Dcompress.c23 Bytef *dest; in compress2()
25 const Bytef *source;
46 stream.next_in = (z_const Bytef *)source;
69 Bytef *dest; in compress()
71 const Bytef *source;
H A Duncompr.c28 Bytef *dest; in uncompress2()
30 const Bytef *source;
49 stream.next_in = (z_const Bytef *)source;
87 Bytef *dest; in uncompress()
89 const Bytef *source;
H A Dzutil.h234 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
235 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
236 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
H A Dzutil.c150 Bytef* dest; in zmemcpy()
151 const Bytef* source;
161 const Bytef* s1; in zmemcmp()
162 const Bytef* s2;
174 Bytef* dest; in zmemzero()
H A Ddeflate.h103 Bytef *pending_buf; /* output still pending */
105 Bytef *pending_out; /* next pending byte to output to the stream */
119 Bytef *window;
281 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
H A Ddeflate.c195 zmemzero((Bytef *)s->head, \
324 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
381 const Bytef *dictionary;
418 strm->next_in = (z_const Bytef *)dictionary;
450 Bytef *dictionary;
555 if ((Bytef *)(s->d_buf) < s->pending_out + ((Buf_size + 7) >> 3))
683 Bytef *str;
1131 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1169 Bytef *buf;
1265 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
[all …]
H A Dadler32.c65 const Bytef *buf;
136 const Bytef *buf;
H A Dzconf.h148 # define Bytef z_Bytef macro
404 # define Bytef Byte FAR macro
406 typedef Byte FAR Bytef; typedef
H A Dinflate.c398 const Bytef *end;
787 state->head->name[state->length++] = (Bytef)len;
808 state->head->comment[state->length++] = (Bytef)len;
1293 Bytef *dictionary;
1316 const Bytef *dictionary;
H A Dzconf.h.in142 # define Bytef z_Bytef macro
398 # define Bytef Byte FAR macro
400 typedef Byte FAR Bytef; typedef
H A Dgzwrite.c231 state->strm.next_in = (z_const Bytef *)buf;
H A DChangeLog1092 - use define instead of typedef for Bytef also for MSC small/medium (Tom Lane)
1153 - read_buf buf parameter of type Bytef* instead of charf*
1154 - zmemcpy parameters are of type Bytef*, not charf* (Joseph Strout)
1302 - fixed declarations using Bytef in infutil.c (pb with MSDOS medium model)
1303 - Bytef is define's instead of typedef'd only for Borland C
1314 - Bytef is define'd instead of typedef'ed (work around Borland bug)
H A Dtrees.c873 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
/f-stack/freebsd/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c329 const Bytef *dictionary, in z_deflateSetDictionary()
685 const Bytef *dictionary, in z_inflateSetDictionary()
1000 Bytef *dictionary, in z_inflateGetDictionary()
1084 ZEXTERN int ZEXPORT z_compress OF((Bytef *dest, uLongf *destLen, in z_compress()
1085 const Bytef *source, uLong sourceLen)) in z_compress()
1103 ZEXTERN int ZEXPORT z_compress2 OF((Bytef *dest, uLongf *destLen, in z_compress2()
1104 const Bytef *source, uLong sourceLen, in z_compress2()
1128 ZEXTERN int ZEXPORT z_uncompress OF((Bytef *dest, uLongf *destLen, in z_uncompress()
1129 const Bytef *source, uLong sourceLen)) in z_uncompress()
1147 ZEXTERN uLong ZEXPORT z_adler32 OF((uLong adler, const Bytef *buf, uInt len)) in z_adler32()
[all …]
H A Dgzwrite.c233 state.state->strm.next_in = (z_const Bytef *)buf;
/f-stack/freebsd/contrib/zstd/zlibWrapper/examples/
H A Dexample_original.c112 err = compress(compr, &comprLen, (const Bytef*)hello, len);
489 (const Bytef*)dictionary, (int)sizeof(dictionary));
541 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
H A Dexample.c120 err = compress(compr, &comprLen, (const Bytef*)hello, len);
497 (const Bytef*)dictionary, (int)sizeof(dictionary));
549 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
/f-stack/freebsd/contrib/zlib/test/
H A Dexample.c95 err = compress(compr, &comprLen, (const Bytef*)hello, len);
472 (const Bytef*)dictionary, (int)sizeof(dictionary));
524 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
/f-stack/freebsd/contrib/zstd/programs/
H A Dfileio.c1044 strm.next_out = (Bytef*)ress->dstBuffer; in FIO_compressGzFrame()
1064 strm.next_out = (Bytef*)ress->dstBuffer; in FIO_compressGzFrame()
1084 strm.next_out = (Bytef*)ress->dstBuffer; in FIO_compressGzFrame()
2192 strm.next_out = (Bytef*)ress->dstBuffer; in FIO_decompressGzFrame()
2218 strm.next_out = (Bytef*)ress->dstBuffer; in FIO_decompressGzFrame()