HomeSort by: relevance | last modified time | path
    Searched defs:put_byte (Results 1 - 2 of 2) sorted by relevancy

  /src/common/dist/zlib/
deflate.h 289 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);} macro
  /src/sys/net/
zlib.c 541 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);} macro
1014 put_byte(s, (Byte)(b >> 8));
1015 put_byte(s, (Byte)(b & 0xff));
2281 put_byte(s, (uch)((w) & 0xff)); \
2282 put_byte(s, (uch)((ush)(w) >> 8)); \
3256 put_byte(s, (Byte)s->bi_buf);
3270 put_byte(s, (Byte)s->bi_buf);
3301 /* bundle up the put_byte(s, *buf++) calls */

Completed in 17 milliseconds