• Home
  • Raw
  • Download

Lines Matching refs:NUM

73 static Cell	truecell	={ OBOOL, BTRUE, 0, 0, 1.0, NUM };
75 static Cell falsecell ={ OBOOL, BFALSE, 0, 0, 0.0, NUM };
77 static Cell breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM };
79 static Cell contcell ={ OJUMP, JCONT, 0, 0, 0.0, NUM };
81 static Cell nextcell ={ OJUMP, JNEXT, 0, 0, 0.0, NUM };
83 static Cell nextfilecell ={ OJUMP, JNEXTFILE, 0, 0, 0.0, NUM };
85 static Cell exitcell ={ OJUMP, JEXIT, 0, 0, 0.0, NUM };
87 static Cell retcell ={ OJUMP, JRET, 0, 0, 0.0, NUM };
89 static Cell tempcell ={ OCELL, CTEMP, 0, "", 0.0, NUM|STR|DONTFREE };
223 static Cell newcopycell = { OCELL, CCOPY, 0, "", 0.0, NUM|STR|DONTFREE }; in call()
295 oargs[i]->tval &= ~(STR|NUM|DONTFREE); in call()
362 if ((y->tval & (STR|NUM)) == (STR|NUM)) { in jump()
365 fp->retval->tval |= NUM; in jump()
369 else if (y->tval & NUM) in jump()
426 fldtab[0]->tval |= NUM; in getline()
479 x->tval &= ~(STR|NUM|DONTFREE); in array()
483 z = setsymtab(buf, "", 0.0, STR|NUM, (Array *) x->sval); in array()
543 ap->tval &= ~(STR|NUM|DONTFREE); in intest()
602 x->tval = NUM; in matchop()
652 if (x->tval&NUM && y->tval&NUM) { in relop()
1092 else if ((y->tval & (STR|NUM)) == (STR|NUM)) { in assign()
1095 x->tval |= NUM; in assign()
1254 setsymtab(num, s, atof(s), STR|NUM, (Array *) ap->sval); in split()
1273 setsymtab(num, s, atof(s), STR|NUM, (Array *) ap->sval); in split()
1293 setsymtab(num, t, atof(t), STR|NUM, (Array *) ap->sval); in split()
1308 setsymtab(num, buf, atof(buf), STR|NUM, (Array *) ap->sval); in split()
1322 setsymtab(num, t, atof(t), STR|NUM, (Array *) ap->sval); in split()
1336 x->tval = NUM; in split()
1899 x->tval = NUM; in gsub()