Home | History | Annotate | Download | only in stdio

Lines Matching refs:freelist

458  static Bigint *freelist[Kmax+1];
623 if ((rv = freelist[k]) != NULL) {
624 freelist[k] = rv->next;
654 v->next = freelist[v->k];
655 freelist[v->k] = v;