Home | History | Annotate | Download | only in zlib-1.2.3

Lines Matching refs:STORED

254     unsigned copy;              /* number of stored or match bytes to copy */
294 case 0: /* stored block */
295 Tracev((stderr, "inflate: stored block%s\n",
297 state->mode = STORED;
317 case STORED:
318 /* get and verify stored block length */
322 strm->msg = (char *)"invalid stored block lengths";
327 Tracev((stderr, "inflate: stored length %u\n",
331 /* copy stored block from input to output */
345 Tracev((stderr, "inflate: stored end\n"));