Lines Matching refs:yytext
44 memmove(name, yytext + 1, yyleng - 2);
199 yylval.integer = strtoul(yytext, NULL, 10);
212 yylval.integer = strtoul(yytext, NULL, 10);
251 yylval.integer = strtoul(yytext, NULL, 10);
319 "acc"[0-9]+ { yylval.integer = atoi(yytext + 3); return ACCREG; }
328 "f"[0|1] { BEGIN(CHANNEL); yylval.integer = atoi(yytext + 1); return FLAGREG; }
332 m[0-9]+ { yylval.integer = atoi(yytext + 1); BEGIN(REG); return MSGREG; }
335 sr[0-9]+ { yylval.integer = atoi(yytext + 2); return STATEREG; }
350 yylval.integer = atoi(yytext + 1);
354 "mask"[0-9]+ { yylval.integer = atoi(yytext + 4); return MASKREG; }
380 yylval.llint = strtoull(yytext + 2, NULL, 16);
384 yylval.llint = strtoll(yytext, NULL, 10);
390 yylval.string = ralloc_strdup(p->mem_ctx, yytext);
398 yylval.string = ralloc_strdup(p->mem_ctx, yytext);
415 return yytext;