Lines Matching refs:tmps
81 Cell *tmps; /* free temporary cells for execution */ variable
932 if (a == tmps) in tfree()
934 a->cnext = tmps; in tfree()
935 tmps = a; in tfree()
942 if (!tmps) { in gettemp()
943 tmps = (Cell *) calloc(100, sizeof(*tmps)); in gettemp()
944 if (!tmps) in gettemp()
947 tmps[i-1].cnext = &tmps[i]; in gettemp()
948 tmps[i-1].cnext = NULL; in gettemp()
950 x = tmps; in gettemp()
951 tmps = x->cnext; in gettemp()