Lines Matching refs:tokstart

1309   char *tokstart;
1335 tokstart = lexptr;
1338 if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
1347 if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
1354 switch (c = *tokstart)
1387 int toklen = lexptr - tokstart + 1;
1389 memcpy (tok, tokstart, toklen);
1401 namelen = skip_quoted (tokstart) - tokstart;
1404 lexptr = tokstart + namelen;
1409 tokstart++;
1455 char *p = tokstart;
1492 toktype = parse_number (tokstart, p - tokstart, got_dot|got_e, &yylval);
1495 char *err_copy = (char *) alloca (p - tokstart + 1);
1497 memcpy (err_copy, tokstart, p - tokstart);
1498 err_copy[p - tokstart] = 0;
1540 tokptr = ++tokstart;
1602 for (c = tokstart[namelen];
1616 char * p = find_template_name_end (tokstart + namelen);
1618 namelen = p - tokstart;
1621 c = tokstart[++namelen];
1628 && tokstart[0] == 'i'
1629 && tokstart[1] == 'f'
1643 if (strncmp (tokstart, "unsigned", 8) == 0)
1646 && strncmp (tokstart, "template", 8) == 0)
1648 if (strncmp (tokstart, "volatile", 8) == 0)
1652 if (strncmp (tokstart, "struct", 6) == 0)
1654 if (strncmp (tokstart, "signed", 6) == 0)
1656 if (strncmp (tokstart, "sizeof", 6) == 0)
1658 if (strncmp (tokstart, "double", 6) == 0)
1664 if (strncmp (tokstart, "false", 5) == 0)
1666 if (strncmp (tokstart, "class", 5) == 0)
1669 if (strncmp (tokstart, "union", 5) == 0)
1671 if (strncmp (tokstart, "short", 5) == 0)
1673 if (strncmp (tokstart, "const", 5) == 0)
1677 if (strncmp (tokstart, "enum", 4) == 0)
1679 if (strncmp (tokstart, "long", 4) == 0)
1683 if (strncmp (tokstart, "true", 4) == 0)
1688 if (strncmp (tokstart, "int", 3) == 0)
1695 yylval.sval.ptr = tokstart;
1698 if (*tokstart == '$')
1784 ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) ||
1785 (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
1788 hextype = parse_number (tokstart, namelen, 0, &newlval);