Searched refs:Byte (Results 1 – 7 of 7) sorted by relevance
/linux-4.19.296/lib/zlib_deflate/ |
D | defutil.h | 74 Byte *pending_buf; /* output still pending */ 76 Byte *pending_out; /* next pending byte to output to the stream */ 79 Byte data_type; /* UNKNOWN, BINARY or ASCII */ 80 Byte method; /* STORED (for zip only) or DEFLATED */ 89 Byte *window; 244 Byte *window_memory; 251 (2 * (1 << (windowBits)) * sizeof(Byte)) 305 put_byte(s, (Byte)s->bi_buf); in bi_flush() 319 put_byte(s, (Byte)s->bi_buf); in bi_windup()
|
D | deflate.c | 76 static int read_buf (z_streamp strm, Byte *buf, unsigned size); 210 mem->window_memory = (Byte *) next; in zlib_deflateInit2() 232 s->window = (Byte *) mem->window_memory; in zlib_deflateInit2() 247 s->method = (Byte)method; in zlib_deflateInit2() 293 put_byte(s, (Byte)(b >> 8)); in putShortMSB() 294 put_byte(s, (Byte)(b & 0xff)); in putShortMSB() 495 Byte *buf, in read_buf() 560 register Byte *scan = s->window + s->strstart; /* current string */ in longest_match() 561 register Byte *match; /* matched string */ in longest_match() 577 register Byte *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match() [all …]
|
D | deftree.c | 1082 s->data_type = (Byte)(bin_freq > (ascii_freq >> 2) ? Z_BINARY : Z_ASCII);
|
/linux-4.19.296/include/linux/ |
D | zutil.h | 47 typedef uLong (*check_func) (uLong check, const Byte *buf, 79 const Byte *buf, in zlib_adler32()
|
D | zlib.h | 85 const Byte *next_in; /* next input byte */ 89 Byte *next_out; /* next output byte should be put there */
|
D | zconf.h | 52 typedef unsigned char Byte; /* 8 bits */ typedef
|
/linux-4.19.296/lib/zlib_inflate/ |
D | inflate.c | 760 Byte *saved_no = z->next_out; in zlib_inflateIncomp()
|