Lines Matching refs:z
228 Cell *y, *z, *fcn; in call() local
315 z = fp->retval; /* return value */ in call()
316 dprintf( ("%s returns %g |%s| %o\n", s, getfval(z), getsval(z), z->tval) ); in call()
318 return(z); in call()
453 Cell *x, *y, *z; in array() local
483 z = setsymtab(buf, "", 0.0, STR|NUM, (Array *) x->sval); in array()
484 z->ctype = OCELL; in array()
485 z->csub = CVAR; in array()
488 return(z); in array()
736 Cell *x, *y, *z = 0; in substr() local
741 z = execute(a[2]); in substr()
748 tempfree(z); in substr()
761 n = (int) getfval(z); in substr()
762 tempfree(z); in substr()
781 Cell *x, *y, *z; in sindex() local
790 z = gettemp(); in sindex()
801 setfval(z, v); in sindex()
802 return(z); in sindex()
1000 Cell *x, *y, *z; in arith() local
1010 z = gettemp(); in arith()
1044 setfval(z, i); in arith()
1045 return(z); in arith()
1063 Cell *x, *z; in incrdecr() local
1074 z = gettemp(); in incrdecr()
1075 setfval(z, xf); in incrdecr()
1078 return(z); in incrdecr()
1146 Cell *x, *y, *z; in cat() local
1163 z = gettemp(); in cat()
1164 z->sval = s; in cat()
1165 z->tval = STR; in cat()
1167 return(z); in cat()