Lines Matching refs:tmps
79 Cell *tmps; /* free temporary cells for execution */ variable
694 if (a == tmps) in tfree()
696 a->cnext = tmps; in tfree()
697 tmps = a; in tfree()
704 if (!tmps) { in gettemp()
705 tmps = (Cell *) calloc(100, sizeof(*tmps)); in gettemp()
706 if (!tmps) in gettemp()
709 tmps[i-1].cnext = &tmps[i]; in gettemp()
710 tmps[i-1].cnext = NULL; in gettemp()
712 x = tmps; in gettemp()
713 tmps = x->cnext; in gettemp()