Lines Matching defs:clist
214 static struct cand *clist; /* merely a free storage pot for candidates */
215 static int clistlen; /* the length of clist */
448 clist = xcalloc(clistlen, sizeof(*clist));
455 free(clist);
649 if (y <= clist[oldc].y)
655 if (clist[c[l]].y <= y)
679 clist = xreallocarray(clist, clistlen, sizeof(*clist));
681 q = clist + clen;
693 if (clist[c[k]].y < y) /* quick look for typical case */
701 t = clist[c[l]].y;
721 for (q = clist + p; q->y != 0; q = clist + q->pred)