Home | History | Annotate | Download | only in zlib

Lines Matching refs:FLAGS

120     state->flags = -1;
421 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
644 state->mode = FLAGS;
673 state->flags = 0; /* indicate zlib header */
680 case FLAGS:
682 state->flags = (int)(hold);
683 if ((state->flags & 0xff) != Z_DEFLATED) {
688 if (state->flags & 0xe000) {
689 strm->msg = __UNCONST("unknown header flags set");
695 if ((state->flags & 0x0200) && (state->wrap & 4))
704 if ((state->flags & 0x0200) && (state->wrap & 4))
715 if ((state->flags & 0x0200) && (state->wrap & 4))
721 if (state->flags & 0x0400) {
726 if ((state->flags & 0x0200) && (state->wrap & 4))
735 if (state->flags & 0x0400) {
747 if ((state->flags & 0x0200) && (state->wrap & 4))
759 if (state->flags & 0x0800) {
769 if ((state->flags & 0x0200) && (state->wrap & 4))
781 if (state->flags & 0x1000) {
791 if ((state->flags & 0x0200) && (state->wrap & 4))
802 if (state->flags & 0x0200) {
812 state->head->hcrc = (int)((state->flags >> 9) & 1);
1204 state->flags ? hold :
1218 if (state->wrap && state->flags) {
1386 int flags; /* temporary to save header status */
1419 if (state->flags == -1)
1423 flags = state->flags;
1427 state->flags = flags;