Lines Matching refs:put_byte
528 put_byte(s, (Byte)(b >> 8));
529 put_byte(s, (Byte)(b & 0xff));
587 put_byte(s, 31);
588 put_byte(s, 139);
589 put_byte(s, 8);
591 put_byte(s, 0);
592 put_byte(s, 0);
593 put_byte(s, 0);
594 put_byte(s, 0);
595 put_byte(s, 0);
596 put_byte(s, s->level == 9 ? 2 :
599 put_byte(s, OS_CODE);
603 put_byte(s, (s->gzhead->text ? 1 : 0) +
609 put_byte(s, (Byte)(s->gzhead->time & 0xff));
610 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
611 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
612 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
613 put_byte(s, s->level == 9 ? 2 :
616 put_byte(s, s->gzhead->os & 0xff);
618 put_byte(s, s->gzhead->extra_len & 0xff);
619 put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
672 put_byte(s, s->gzhead->extra[s->gzindex]);
704 put_byte(s, val);
735 put_byte(s, val);
751 put_byte(s, (Byte)(strm->adler & 0xff));
752 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
841 put_byte(s, (Byte)(strm->adler & 0xff));
842 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
843 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
844 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
845 put_byte(s, (Byte)(strm->total_in & 0xff));
846 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
847 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
848 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));