Lines Matching refs:tmps
72 Cell *tmps; /* free temporary cells for execution */ variable
686 if (a == tmps) in tfree()
688 a->cnext = tmps; in tfree()
689 tmps = a; in tfree()
696 if (!tmps) { in gettemp()
697 tmps = (Cell *) calloc(100, sizeof(Cell)); in gettemp()
698 if (!tmps) in gettemp()
701 tmps[i-1].cnext = &tmps[i]; in gettemp()
702 tmps[i-1].cnext = 0; in gettemp()
704 x = tmps; in gettemp()
705 tmps = x->cnext; in gettemp()