Home | History | Annotate | Download | only in puff

Lines Matching defs:out

75  *                      - Break out test code to separate file
100 unsigned char *out; /* output buffer */
101 unsigned long outlen; /* available space at out */
102 unsigned long outcnt; /* bytes written to out so far */
134 longjmp(s->env, 1); /* out of input */
181 /* copy len bytes from in to out */
184 if (s->out != NIL) {
188 s->out[s->outcnt++] = s->in[s->incnt++];
254 return -10; /* ran out of codes */
299 longjmp(s->env, 1); /* out of input */
304 return -10; /* ran out of codes */
464 /* write out the literal */
465 if (s->out != NIL) {
468 s->out[s->outcnt] = symbol;
490 if (s->out != NIL) {
494 s->out[s->outcnt] =
499 s->out[s->outcnt - dist];
643 * likely. As it turns out, very short and very long codes are less likely
803 s.out = dest;