Lines Matching refs:NUM

77 static Cell	truecell	={ OBOOL, BTRUE, 0, 0, 1.0, NUM };
79 static Cell falsecell ={ OBOOL, BFALSE, 0, 0, 0.0, NUM };
81 static Cell breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM };
83 static Cell contcell ={ OJUMP, JCONT, 0, 0, 0.0, NUM };
85 static Cell nextcell ={ OJUMP, JNEXT, 0, 0, 0.0, NUM };
87 static Cell nextfilecell ={ OJUMP, JNEXTFILE, 0, 0, 0.0, NUM };
89 static Cell exitcell ={ OJUMP, JEXIT, 0, 0, 0.0, NUM };
91 static Cell retcell ={ OJUMP, JRET, 0, 0, 0.0, NUM };
93 static Cell tempcell ={ OCELL, CTEMP, 0, "", 0.0, NUM|STR|DONTFREE };
227 static Cell newcopycell = { OCELL, CCOPY, 0, "", 0.0, NUM|STR|DONTFREE }; in call()
299 oargs[i]->tval &= ~(STR|NUM|DONTFREE); in call()
366 if ((y->tval & (STR|NUM)) == (STR|NUM)) { in jump()
369 fp->retval->tval |= NUM; in jump()
373 else if (y->tval & NUM) in jump()
430 fldtab[0]->tval |= NUM; in awkgetline()
483 x->tval &= ~(STR|NUM|DONTFREE); in array()
487 z = setsymtab(buf, "", 0.0, STR|NUM, (Array *) x->sval); in array()
547 ap->tval &= ~(STR|NUM|DONTFREE); in intest()
606 x->tval = NUM; in matchop()
656 if (x->tval&NUM && y->tval&NUM) { in relop()
1096 else if ((y->tval & (STR|NUM)) == (STR|NUM)) { in assign()
1099 x->tval |= NUM; in assign()
1264 setsymtab(num, s, atof(s), STR|NUM, (Array *) ap->sval); in split()
1283 setsymtab(num, s, atof(s), STR|NUM, (Array *) ap->sval); in split()
1303 setsymtab(num, t, atof(t), STR|NUM, (Array *) ap->sval); in split()
1318 setsymtab(num, buf, atof(buf), STR|NUM, (Array *) ap->sval); in split()
1332 setsymtab(num, t, atof(t), STR|NUM, (Array *) ap->sval); in split()
1347 x->tval = NUM; in split()
1933 x->tval = NUM; in gsub()