Searched refs:put_byte (Results 1 – 3 of 3) sorted by relevance
/u-boot/lib/zlib/ |
A D | deflate.c | 553 put_byte(s, (Byte)(b >> 8)); 610 put_byte(s, 31); 611 put_byte(s, 139); 612 put_byte(s, 8); 614 put_byte(s, 0); 615 put_byte(s, 0); 616 put_byte(s, 0); 617 put_byte(s, 0); 618 put_byte(s, 0); 727 put_byte(s, val); [all …]
|
A D | trees.c | 183 put_byte(s, (uch)((w) & 0xff)); \ 184 put_byte(s, (uch)((ush)(w) >> 8)); \ 1195 put_byte(s, (Byte)s->bi_buf); 1210 put_byte(s, (Byte)s->bi_buf); 1243 put_byte(s, *buf++);
|
A D | deflate.h | 275 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);} macro
|
Completed in 8 milliseconds