Lines Matching refs:put_byte
553 put_byte(s, (Byte)(b >> 8));
554 put_byte(s, (Byte)(b & 0xff));
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);
619 put_byte(s, s->level == 9 ? 2 :
622 put_byte(s, OS_CODE);
626 put_byte(s, (s->gzhead->text ? 1 : 0) +
632 put_byte(s, (Byte)(s->gzhead->time & 0xff));
633 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
634 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
635 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
636 put_byte(s, s->level == 9 ? 2 :
639 put_byte(s, s->gzhead->os & 0xff);
641 put_byte(s, s->gzhead->extra_len & 0xff);
642 put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
695 put_byte(s, s->gzhead->extra[s->gzindex]);
727 put_byte(s, val);
758 put_byte(s, val);
774 put_byte(s, (Byte)(strm->adler & 0xff));
775 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
870 put_byte(s, (Byte)(strm->adler & 0xff));
871 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
872 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
873 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
874 put_byte(s, (Byte)(strm->total_in & 0xff));
875 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
876 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
877 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));