Searched refs:Bytef (Results 1 - 17 of 17) sorted by relevance
/openjdk7/jdk/src/share/native/java/util/zip/ |
H A D | CRC32.c | 39 Bytef buf[1]; 41 buf[0] = (Bytef)b; 49 Bytef *buf = (*env)->GetPrimitiveArrayCritical(env, b, 0); 59 return crc32(crc, (Bytef*)buf, len);
|
H A D | Adler32.c | 39 Bytef buf[1]; 41 buf[0] = (Bytef)b; 49 Bytef *buf = (*env)->GetPrimitiveArrayCritical(env, b, 0); 61 Bytef *buf = (Bytef *)jlong_to_ptr(address);
|
H A D | Deflater.c | 98 Bytef *buf = (*env)->GetPrimitiveArrayCritical(env, b, 0); 147 strm->next_in = (Bytef *) (in_buf + this_off); 148 strm->next_out = (Bytef *) (out_buf + off); 186 strm->next_in = (Bytef *) (in_buf + this_off); 187 strm->next_out = (Bytef *) (out_buf + off);
|
H A D | Inflater.c | 88 Bytef *buf = (*env)->GetPrimitiveArrayCritical(env, b, 0); 133 strm->next_in = (Bytef *) (in_buf + this_off); 134 strm->next_out = (Bytef *) (out_buf + off);
|
H A D | zip_util.c | 1374 strm.next_in = (Bytef *)tmp;
|
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/ |
H A D | compress.c | 47 Bytef *dest; 49 const Bytef *source; 56 stream.next_in = (Bytef*)source; 87 Bytef *dest; 89 const Bytef *source;
|
H A D | uncompr.c | 51 Bytef *dest; 53 const Bytef *source; 59 stream.next_in = (Bytef*)source;
|
H A D | zlib.h | 107 Bytef *next_in; /* next input byte */ 111 Bytef *next_out; /* next output byte should be put there */ 138 Bytef *extra; /* pointer to extra field or Z_NULL if none */ 141 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */ 143 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ 563 const Bytef *dictionary, 761 const Bytef *dictionary, 1033 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, 1034 const Bytef *source, uLong sourceLen)); 1048 ZEXTERN int ZEXPORT compress2 OF((Bytef *des [all...] |
H A D | zutil.c | 174 Bytef* dest; 175 const Bytef* source; 185 const Bytef* s1; 186 const Bytef* s2; 198 Bytef* dest;
|
H A D | zutil.h | 260 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 261 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 262 extern void zmemzero OF((Bytef* dest, uInt len));
|
H A D | zconf.h | 80 # define Bytef z_Bytef macro 299 # define Bytef Byte FAR macro 301 typedef Byte FAR Bytef; typedef
|
H A D | deflate.h | 121 Bytef *pending_buf; /* output still pending */ 123 Bytef *pending_out; /* next pending byte to output to the stream */ 137 Bytef *window;
|
H A D | deflate.c | 109 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size)); 225 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head)); 311 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); 341 const Bytef *dictionary; 944 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); 982 Bytef *buf; 1056 register Bytef *scan = s->window + s->strstart; /* current string */ 1057 register Bytef *match; /* matched string */ 1073 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1; 1077 register Bytef *stren [all...] |
H A D | zadler32.c | 83 const Bytef *buf;
|
H A D | gzio.c | 424 Bytef *start = (Bytef*)buf; /* starting point for crc computation */ 433 s->stream.next_out = (Bytef*)buf; 592 s->stream.next_in = (Bytef*)buf; 613 s->crc = crc32(s->crc, (const Bytef *)buf, len);
|
H A D | inflate.c | 1195 const Bytef *dictionary;
|
/openjdk7/jdk/src/share/native/sun/awt/libpng/ |
H A D | pngwutil.c | 432 png_ptr->zstream.next_in = (Bytef *)text;
|
Completed in 1981 milliseconds