Home | History | Annotate | Download | only in blast

Lines Matching refs:next

39     unsigned char *in;          /* next input location */
50 unsigned next; /* index of next write location in out[] */
131 int left; /* bits left in next or left to process */
132 short *next; /* next number of codes */
138 next = h->count + 1;
143 count = *next++;
149 index += count; /* else update for next length */
254 * next, 0 for literals, 1 for length/distance.
256 * - If literals are uncoded, then the next eight bits are the literal, in the
336 if (s->first && dist > s->next)
341 to = s->out + s->next;
344 if (s->next < dist) {
348 copy -= s->next;
351 s->next += copy;
355 if (s->next == MAXWIN) {
356 if (s->outfun(s->outhow, s->out, s->next)) return 1;
357 s->next = 0;
365 s->out[s->next++] = symbol;
366 if (s->next == MAXWIN) {
367 if (s->outfun(s->outhow, s->out, s->next)) return 1;
368 s->next = 0;
392 s.next = 0;
402 if (err != 1 && s.next && s.outfun(s.outhow, s.out, s.next) && err == 0)