Home | History | Annotate | Download | only in net

Lines Matching refs:METHOD

377     Byte  method;        /* STORED (for zip only) or DEFLATED */
813 int level, int method, int windowBits, int memLevel, int strategy,
849 if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
891 s->method = (Byte)method;
3232 * method would use a table)
3371 METHOD, /* waiting for method byte */
3395 uInt method; /* if FLAGS, method byte */
3418 z->state->mode = z->state->nowrap ? BLOCKS : METHOD;
3515 case METHOD:
3517 if (((z->state->sub.method = NEXTBYTE) & 0xf) != Z_DEFLATED)
3520 z->msg = "unknown compression method";
3524 if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
3536 if (((z->state->sub.method << 8) + b) % 31)