Lines Matching refs:yytext
43 memmove(name, yytext + 1, yyleng - 2);
198 yylval.integer = strtoul(yytext, NULL, 10);
211 yylval.integer = strtoul(yytext, NULL, 10);
250 yylval.integer = strtoul(yytext, NULL, 10);
318 "acc"[0-9]+ { yylval.integer = atoi(yytext + 3); return ACCREG; }
327 "f"[0|1] { BEGIN(CHANNEL); yylval.integer = atoi(yytext + 1); return FLAGREG; }
331 m[0-9]+ { yylval.integer = atoi(yytext + 1); BEGIN(REG); return MSGREG; }
334 sr[0-9]+ { yylval.integer = atoi(yytext + 2); return STATEREG; }
349 yylval.integer = atoi(yytext + 1);
353 "mask"[0-9]+ { yylval.integer = atoi(yytext + 4); return MASKREG; }
379 yylval.llint = strtoull(yytext + 2, NULL, 16);
383 yylval.llint = strtoll(yytext, NULL, 10);
389 yylval.string = ralloc_strdup(p->mem_ctx, yytext);
397 yylval.string = ralloc_strdup(p->mem_ctx, yytext);
414 return yytext;