Home
last modified time | relevance | path

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

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dzlib.h83 Bytef *next_in; /* next input byte */
87 Bytef *next_out; /* next output byte should be put there */
114 Bytef *extra; /* pointer to extra field or Z_NULL if none */
117 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
119 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
539 const Bytef *dictionary,
737 const Bytef *dictionary,
1009 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1010 const Bytef *source, uLong sourceLen));
1024 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
[all …]
Dcompress.c23 Bytef *dest; in compress2()
25 const Bytef *source;
32 stream.next_in = (Bytef*)source;
63 Bytef *dest; in compress()
65 const Bytef *source;
Duncompr.c27 Bytef *dest; in uncompress()
29 const Bytef *source;
35 stream.next_in = (Bytef*)source;
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()
Dzutil.h243 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
244 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
245 extern void zmemzero OF((Bytef* dest, uInt len));
Dzconf.h53 # define Bytef z_Bytef macro
268 # define Bytef Byte FAR macro
270 typedef Byte FAR Bytef; typedef
Dzconf.in.h53 # define Bytef z_Bytef macro
268 # define Bytef Byte FAR macro
270 typedef Byte FAR Bytef; typedef
Ddeflate.h97 Bytef *pending_buf; /* output still pending */
99 Bytef *pending_out; /* next pending byte to output to the stream */
113 Bytef *window;
Dexample.c66 err = compress(compr, &comprLen, (const Bytef*)hello, len);
184 c_stream.next_in = (Bytef*)hello;
359 c_stream.next_in = (Bytef*)hello;
441 (const Bytef*)dictionary, sizeof(dictionary));
448 c_stream.next_in = (Bytef*)hello;
493 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
Ddeflate.c85 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
201 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
287 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
317 const Bytef *dictionary;
920 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
958 Bytef *buf;
1032 register Bytef *scan = s->window + s->strstart; /* current string */
1033 register Bytef *match; /* matched string */
1049 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1053 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
[all …]
Dgzio.c400 Bytef *start = (Bytef*)buf; /* starting point for crc computation */
409 s->stream.next_out = (Bytef*)buf;
568 s->stream.next_in = (Bytef*)buf;
589 s->crc = crc32(s->crc, (const Bytef *)buf, len);
Dadler32.c59 const Bytef *buf;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dcompress.c23 Bytef *dest; in compress2()
25 const Bytef *source;
32 stream.next_in = (z_const Bytef *)source;
63 Bytef *dest; in compress()
65 const Bytef *source;
Dzlib.h86 z_const Bytef *next_in; /* next input byte */
90 Bytef *next_out; /* next output byte should be put there */
117 Bytef *extra; /* pointer to extra field or Z_NULL if none */
120 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
122 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
588 const Bytef *dictionary,
820 const Bytef *dictionary,
843 Bytef *dictionary,
1160 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1161 const Bytef *source, uLong sourceLen));
[all …]
Duncompr.c25 Bytef *dest; in uncompress()
27 const Bytef *source;
33 stream.next_in = (z_const Bytef *)source;
Dzutil.c153 Bytef* dest; in zmemcpy()
154 const Bytef* source;
164 const Bytef* s1; in zmemcmp()
165 const Bytef* s2;
177 Bytef* dest; in zmemzero()
Dzutil.h213 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
214 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
215 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
Ddeflate.h100 Bytef *pending_buf; /* output still pending */
102 Bytef *pending_out; /* next pending byte to output to the stream */
116 Bytef *window;
Ddeflate.c87 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
198 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
325 const Bytef *dictionary;
362 strm->next_in = (z_const Bytef *)dictionary;
474 if ((Bytef *)(s->d_buf) < s->pending_out + ((Buf_size + 7) >> 3))
572 Bytef *str;
1040 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1078 Bytef *buf;
1153 register Bytef *scan = s->window + s->strstart; /* current string */
[all …]
Dzconf.h129 # define Bytef z_Bytef macro
375 # define Bytef Byte FAR macro
377 typedef Byte FAR Bytef; typedef
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,
Dadler32.c67 const Bytef *buf;
Dinflate.c381 const Bytef *end;
1270 Bytef *dictionary;
1293 const Bytef *dictionary;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/zlib/
Dzutil.h243 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
244 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
245 extern void zmemzero OF((Bytef* dest, uInt len));
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/
Dzutil.h216 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
217 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
218 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));

12