Lines Matching refs:yypos
45 int yypos = 0;
69 if (yypos < yylast) {
70 c = yytext[yypos++];
76 if (yypos == YYBUFSIZ)
81 yypos++;
94 yytext[yypos++] = c;
95 yylast = yypos;
96 yytext[yypos] = '\0';
107 yytext[--yypos] = c;
131 for (i = 0; i < yypos; i++)
195 printf("yygetc = (%x) %c [%*.*s]\n", c, c, yypos, yypos,
210 if (yylast > yypos) {
211 bcopy(yytext + yypos, yytext,
212 sizeof(yytext[0]) * (yylast - yypos + 1));
214 yylast -= yypos;
215 yypos = 0;
223 if (yylast == yypos) {
225 yypos--;
227 yypos--;
228 if (yypos == 0)
277 name = yytexttostr(1, yypos); /* skip $ */
283 name = yytexttostr(yypos, yylast);
285 yypos = 0;
311 yypos++;
320 yypos = 0;
430 start = yypos;
452 yypos = start;
495 yystr = yytexttostr(0, yypos);
548 bcopy(yytext + yypos, yytext,
549 sizeof(yytext[0]) * (yylast - yypos + 1));
550 yylast -= yypos;
551 yypos = 0;
612 txt = yytexttostr(yypos, YYBUFSIZ);
674 yylineNum, n, yystr, yypos, yylast);