Home
last modified time | relevance | path

Searched refs:put_byte (Results 1 – 5 of 5) sorted by relevance

/openbmc/u-boot/lib/zlib/
H A Ddeflate.c552 put_byte(s, (Byte)(b >> 8));
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);
726 put_byte(s, val);
[all …]
H A Dtrees.c182 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++);
H A Ddeflate.h275 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);} macro
/openbmc/linux/lib/zlib_deflate/
H A Ddefutil.h260 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);} macro
289 put_byte(s, (uch)((w) & 0xff)); \
290 put_byte(s, (uch)((ush)(w) >> 8)); \
321 put_byte(s, (Byte)s->bi_buf); in bi_flush()
335 put_byte(s, (Byte)s->bi_buf); in bi_windup()
H A Ddeflate.c324 put_byte(s, (Byte)(b >> 8)); in putShortMSB()
325 put_byte(s, (Byte)(b & 0xff)); in putShortMSB()