Searched refs:NUMB (Results 1 – 3 of 3) sorted by relevance
62 %token NUMB67 %right NUMB212 : NUMB { $$ = $1; }213 | NUMB NUMB { $$ = 10 * $1 + $2; }216 : NUMB NUMB { $$ = 10 * $1 + $2; }219 : NUMB { $$ = $1; }220 | number NUMB { $$ = 10 * $1 + $2; }
85 [0-9] { yylval = yytext[0] - '0'; return(NUMB); }
129 #define NUMB 3 /* these three are arbitrary, */ macro239 static short type = NUMB;763 if (type == NUMB) in main()811 type = NUMB; in main()1017 if (type == NUMB) { in main()1182 if (type == NUMB) { in main()1294 if (type == NUMB) in main()1325 if (type == NUMB) in main()1335 if (type == NUMB) in main()1374 if (type == NUMB) { in main()[all …]