Home | History | Annotate | Download | only in gas

Lines Matching refs:yytext

63     yytext[yyleng] = 0;
64 yylval.processor = strtoul (yytext+1, 0, 0);
68 yytext[yyleng] = 0;
69 yylval.num = strtoul (yytext, 0, 0);
73 yytext[yyleng] = 0;
74 yylval.num = strtoul (yytext, 0, 0);
78 yytext[yyleng] = 0;
79 yylval.str = strdup (yytext);
101 MDBG (("char = %x, %d\n", yytext[0], yytext[0]));
102 return yytext[0];