Home | History | Annotate | Download | only in stdlib

Lines Matching refs:freelist

371  static Bigint *freelist[Kmax+1];
412 if ((rv = freelist[k]) != NULL) {
413 freelist[k] = rv->next;
443 v->next = freelist[v->k];
444 freelist[v->k] = v;