Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zlib_deflate/
Ddefutil.h262 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);} macro
291 put_byte(s, (uch)((w) & 0xff)); \
292 put_byte(s, (uch)((ush)(w) >> 8)); \
305 put_byte(s, (Byte)s->bi_buf); in bi_flush()
319 put_byte(s, (Byte)s->bi_buf); in bi_windup()
Ddeflate.c293 put_byte(s, (Byte)(b >> 8)); in putShortMSB()
294 put_byte(s, (Byte)(b & 0xff)); in putShortMSB()