Lines Matching refs:put_byte
601 put_byte(s, (Byte)(b >> 8));
602 put_byte(s, (Byte)(b & 0xff));
660 put_byte(s, 31);
661 put_byte(s, 139);
662 put_byte(s, 8);
664 put_byte(s, 0);
665 put_byte(s, 0);
666 put_byte(s, 0);
667 put_byte(s, 0);
668 put_byte(s, 0);
669 put_byte(s, s->level == 9 ? 2 :
672 put_byte(s, OS_CODE);
676 put_byte(s, (s->gzhead->text ? 1 : 0) +
682 put_byte(s, (Byte)(s->gzhead->time & 0xff));
683 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
684 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
685 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
686 put_byte(s, s->level == 9 ? 2 :
689 put_byte(s, s->gzhead->os & 0xff);
691 put_byte(s, s->gzhead->extra_len & 0xff);
692 put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
745 put_byte(s, s->gzhead->extra[s->gzindex]);
777 put_byte(s, val);
808 put_byte(s, val);
824 put_byte(s, (Byte)(strm->adler & 0xff));
825 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
920 put_byte(s, (Byte)(strm->adler & 0xff));
921 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
922 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
923 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
924 put_byte(s, (Byte)(strm->total_in & 0xff));
925 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
926 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
927 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));