Searched refs:Byte (Results 1 – 4 of 4) sorted by relevance
| /xnu-12377.1.9/libkern/libkern/ |
| H A D | zconf.h | 77 # define Byte z_Byte macro 288 typedef unsigned char Byte; /* 8 bits */ typedef 295 # define Bytef Byte FAR 297 typedef Byte FAR Bytef; 309 typedef Byte const *voidpc; 310 typedef Byte FAR *voidpf; 311 typedef Byte *voidp;
|
| /xnu-12377.1.9/libkern/zlib/ |
| H A D | deflate.c | 307 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); in deflateInit2_() 329 s->method = (Byte)method; in deflateInit2_() 547 put_byte(s, (Byte)(b >> 8)); in putShortMSB() 548 put_byte(s, (Byte)(b & 0xff)); in putShortMSB() 631 put_byte(s, (Byte)(s->gzhead->time & 0xff)); in deflate() 632 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff)); in deflate() 633 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff)); in deflate() 634 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff)); in deflate() 773 put_byte(s, (Byte)(strm->adler & 0xff)); in deflate() 774 put_byte(s, (Byte)((strm->adler >> 8) & 0xff)); in deflate() [all …]
|
| H A D | deflate.h | 133 Byte method; /* STORED (for zip only) or DEFLATED */
|
| H A D | trees.c | 1241 put_byte(s, (Byte)s->bi_buf); 1256 put_byte(s, (Byte)s->bi_buf);
|