Home | History | Annotate | Download | only in blast

Lines Matching defs:out

52     unsigned next;              /* index of next write location in out[] */
54 unsigned char out[MAXWIN]; /* output buffer and sliding window */
77 if (s->left == 0) longjmp(s->env, 1); /* out of input */
161 if (s->left == 0) longjmp(s->env, 1); /* out of input */
167 return -9; /* ran out of codes */
343 to = s->out + s->next;
358 if (s->outfun(s->outhow, s->out, s->next)) return 1;
367 s->out[s->next++] = symbol;
369 if (s->outfun(s->outhow, s->out, s->next)) return 1;
404 if (err != 1 && s.next && s.outfun(s.outhow, s.out, s.next) && err == 0)