HomeSort by: relevance | last modified time | path
    Searched refs:Bytef (Results 1 - 21 of 21) sorted by relevancy

  /src/common/dist/zlib/
compress.c 24 int ZEXPORT compress2(Bytef *dest, uLongf *destLen, const Bytef *source,
65 int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source,
uncompr.c 29 int ZEXPORT uncompress2(Bytef *dest, uLongf *destLen, const Bytef *source,
84 int ZEXPORT uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
zlib.h 89 z_const Bytef *next_in; /* next input byte */
93 Bytef *next_out; /* next output byte will go here */
121 Bytef *extra; /* pointer to extra field or Z_NULL if none */
124 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
126 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
614 const Bytef *dictionary,
658 Bytef *dictionary,
891 const Bytef *dictionary,
914 Bytef *dictionary,
1234 ZEXTERN int ZEXPORT compress(Bytef *dest, uLongf *destLen
    [all...]
zutil.c 147 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len) {
154 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) {
163 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len) {
zutil.h 228 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len);
229 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len);
230 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len);
deflate.h 109 Bytef *pending_buf; /* output still pending */
111 Bytef *pending_out; /* next pending byte to output to the stream */
125 Bytef *window;
289 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
adler32.c 61 uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf, z_size_t len) {
128 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) {
zconf.h 149 # define Bytef z_Bytef
408 # define Bytef Byte FAR
410 typedef Byte FAR Bytef;
deflate.c 175 zmemzero((Bytef *)s->head, \
220 local unsigned read_buf(z_streamp strm, Bytef *buf, unsigned size) {
451 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
552 int ZEXPORT deflateSetDictionary(z_streamp strm, const Bytef *dictionary,
618 int ZEXPORT deflateGetDictionary(z_streamp strm, Bytef *dictionary,
868 Bytef *str;
1308 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1352 register Bytef *scan = s->window + s->strstart; /* current string */
1353 register Bytef *match; /* matched string */
1369 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1
    [all...]
zconf.h.in 145 # define Bytef z_Bytef
400 # define Bytef Byte FAR
402 typedef Byte FAR Bytef;
zconf.h.cmakein 147 # define Bytef z_Bytef
402 # define Bytef Byte FAR
404 typedef Byte FAR Bytef;
inflate.c 370 local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy) {
767 state->head->name[state->length++] = (Bytef)len;
789 state->head->comment[state->length++] = (Bytef)len;
1287 int ZEXPORT inflateGetDictionary(z_streamp strm, Bytef *dictionary,
1307 int ZEXPORT inflateSetDictionary(z_streamp strm, const Bytef *dictionary,
trees.c 867 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
  /src/sys/net/
zlib.h 53 * Byte Bytef EXPORT FAR OF STDC
91 # define Bytef z_Bytef
267 # define Bytef Byte FAR
269 typedef Byte FAR Bytef;
363 Bytef *next_in; /* next input byte */
367 Bytef *next_out; /* next output byte should be put there */
744 ZEXTERN int ZEXPORT deflateSetDictionary(z_streamp, const Bytef *, uInt);
863 ZEXTERN int ZEXPORT inflateSetDictionary(z_streamp, const Bytef *, uInt);
916 ZEXTERN int ZEXPORT compress(Bytef *, uLongf *, const Bytef *, uLong)
    [all...]
zlib.c 246 extern void zmemcpy(Bytef* dest, const Bytef* source, uInt len);
247 extern int zmemcmp(const Bytef* s1, const Bytef* s2, uInt len);
248 extern void zmemzero(Bytef* dest, uInt len);
272 typedef uLong (ZEXPORT *check_func)(uLong check, const Bytef *buf,
371 Bytef *pending_buf; /* output still pending */
373 Bytef *pending_out; /* next pending byte to output to the stream */
386 Bytef *window;
692 local int read_buf(z_streamp strm, Bytef *buf, unsigned size)
    [all...]
  /src/sys/arch/pmax/stand/smallnet/
smallnet.c 98 ret = uncompress((Bytef *)kernel_loadaddr, &destlen, kernel_image,
  /src/common/dist/zlib/test/
example.c 65 err = compress(compr, &comprLen, (const Bytef*)hello, len);
420 (const Bytef*)dictionary, (int)sizeof(dictionary));
470 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
  /src/sys/arch/hpc/stand/hpcboot/
file_manager.cpp 39 uLong crc32(uLong crc, const Bytef *buf, uInt len);
  /src/common/dist/zlib/contrib/minizip/
unzip.c 1571 pfile_in_zip_read_info->stream.next_out = (Bytef*)buf;
1627 (Bytef*)pfile_in_zip_read_info->read_buffer;
1666 const Bytef *bufBefore;
1679 bufBefore = (const Bytef *)pfile_in_zip_read_info->bstream.next_out;
1692 pfile_in_zip_read_info->stream.next_in = (Bytef*)pfile_in_zip_read_info->bstream.next_in;
1695 pfile_in_zip_read_info->stream.next_out = (Bytef*)pfile_in_zip_read_info->bstream.next_out;
1708 const Bytef *bufBefore;
zip.c 1415 zi->ci.stream.next_in = (Bytef*)(uintptr_t)buf;
  /src/usr.bin/gzip/
gzip.c 662 crc = crc32(crc, (const Bytef *)inbufp, (unsigned)in_size);
986 crc = crc32(crc, (const Bytef *)outbufp, (unsigned)wr);

Completed in 32 milliseconds