Lines Matching refs:put_byte
632 put_byte(s, (Byte)(b >> 8));
633 put_byte(s, (Byte)(b & 0xff));
694 put_byte(s, 31);
695 put_byte(s, 139);
696 put_byte(s, 8);
698 put_byte(s, 0);
699 put_byte(s, 0);
700 put_byte(s, 0);
701 put_byte(s, 0);
702 put_byte(s, 0);
703 put_byte(s, s->level == 9 ? 2 :
706 put_byte(s, OS_CODE);
710 put_byte(s, (s->gzhead->text ? 1 : 0) +
716 put_byte(s, (Byte)(s->gzhead->time & 0xff));
717 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
718 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
719 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
720 put_byte(s, s->level == 9 ? 2 :
723 put_byte(s, s->gzhead->os & 0xff);
725 put_byte(s, s->gzhead->extra_len & 0xff);
726 put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
779 put_byte(s, s->gzhead->extra[s->gzindex]);
811 put_byte(s, val);
842 put_byte(s, val);
858 put_byte(s, (Byte)(strm->adler & 0xff));
859 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
955 put_byte(s, (Byte)(strm->adler & 0xff));
956 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
957 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
958 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
959 put_byte(s, (Byte)(strm->total_in & 0xff));
960 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
961 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
962 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));