Searched refs:put_byte (Results 1 – 9 of 9) sorted by relevance
/external/u-boot/lib/zlib/ |
D | deflate.c | 552 put_byte(s, (Byte)(b >> 8)); 553 put_byte(s, (Byte)(b & 0xff)); 609 put_byte(s, 31); 610 put_byte(s, 139); 611 put_byte(s, 8); 613 put_byte(s, 0); 614 put_byte(s, 0); 615 put_byte(s, 0); 616 put_byte(s, 0); 617 put_byte(s, 0); [all …]
|
D | trees.c | 182 put_byte(s, (uch)((w) & 0xff)); \ 183 put_byte(s, (uch)((ush)(w) >> 8)); \ 1194 put_byte(s, (Byte)s->bi_buf); 1209 put_byte(s, (Byte)s->bi_buf); 1242 put_byte(s, *buf++);
|
D | deflate.h | 275 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);} macro
|
/external/python/cpython2/Modules/zlib/ |
D | deflate.c | 720 put_byte(s, (Byte)(b >> 8)); 721 put_byte(s, (Byte)(b & 0xff)); 852 put_byte(s, 31); 853 put_byte(s, 139); 854 put_byte(s, 8); 856 put_byte(s, 0); 857 put_byte(s, 0); 858 put_byte(s, 0); 859 put_byte(s, 0); 860 put_byte(s, 0); [all …]
|
D | trees.c | 175 put_byte(s, (uch)((w) & 0xff)); \ 176 put_byte(s, (uch)((ush)(w) >> 8)); \ 1181 put_byte(s, (Byte)s->bi_buf); 1196 put_byte(s, (Byte)s->bi_buf);
|
D | deflate.h | 281 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);} macro
|
/external/zlib/src/ |
D | deflate.c | 720 put_byte(s, (Byte)(b >> 8)); 721 put_byte(s, (Byte)(b & 0xff)); 852 put_byte(s, 31); 853 put_byte(s, 139); 854 put_byte(s, 8); 856 put_byte(s, 0); 857 put_byte(s, 0); 858 put_byte(s, 0); 859 put_byte(s, 0); 860 put_byte(s, 0); [all …]
|
D | trees.c | 175 put_byte(s, (uch)((w) & 0xff)); \ 176 put_byte(s, (uch)((ush)(w) >> 8)); \ 1181 put_byte(s, (Byte)s->bi_buf); 1196 put_byte(s, (Byte)s->bi_buf);
|
D | deflate.h | 281 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);} macro
|