Home | History | Annotate | Download | only in diff

Lines Matching defs:clist

217 static struct cand *clist;	/* merely a free storage pot for candidates */
218 static int clistlen; /* the length of clist */
403 clist = xcalloc(clistlen, sizeof(*clist));
410 free(clist);
604 if (y <= clist[oldc].y)
610 if (clist[c[l]].y <= y)
634 clist = xreallocarray(clist, clistlen, sizeof(*clist));
636 q = clist + clen;
648 if (clist[c[k]].y < y) /* quick look for typical case */
656 t = clist[c[l]].y;
676 for (q = clist + p; q->y != 0; q = clist + q->pred)