Home | History | Annotate | Download | only in lib

Lines Matching refs:nextFree

254     MemCellHdr prevFree, nextFree;
327 cbeg->nextFree = cmid;
329 cmid->nextFree = cend;
331 cend->nextFree = NULL;
337 cbeg->nextFree = NULL;
339 cmid->nextFree = this->freeCells->nextFree;
341 cmid->nextFree->prevFree = cmid;
342 cmid->prevFree->nextFree = cmid;
343 cend->nextFree = NULL;
523 c = this->freeCells->nextFree;
528 c = c->nextFree;
534 c->prevFree->nextFree = c->nextFree;
535 c->nextFree->prevFree = c->prevFree;
543 c2->nextFree = c->nextFree;
544 c2->nextFree->prevFree = c2;
546 c2->prevFree->nextFree = c2;
583 cr->nextFree->prevFree = cr->prevFree;
584 cr->prevFree->nextFree = cr->nextFree;
594 c->nextFree = cr->nextFree;
596 c->nextFree->prevFree = c;
597 c->prevFree->nextFree = c;
599 c->nextFree = this->freeCells->nextFree;
601 c->nextFree->prevFree = c;
602 c->prevFree->nextFree = c;