Lines Matching refs:tokstart

2964   char *tokstart;
2990 tokstart = lexptr;
2993 if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
3002 if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
3009 switch (c = *tokstart)
3042 int toklen = lexptr - tokstart + 1;
3044 memcpy (tok, tokstart, toklen);
3056 namelen = skip_quoted (tokstart) - tokstart;
3059 lexptr = tokstart + namelen;
3064 tokstart++;
3110 char *p = tokstart;
3147 toktype = parse_number (tokstart, p - tokstart, got_dot|got_e, &yylval);
3150 char *err_copy = (char *) alloca (p - tokstart + 1);
3152 memcpy (err_copy, tokstart, p - tokstart);
3153 err_copy[p - tokstart] = 0;
3195 tokptr = ++tokstart;
3257 for (c = tokstart[namelen];
3271 char * p = find_template_name_end (tokstart + namelen);
3273 namelen = p - tokstart;
3276 c = tokstart[++namelen];
3283 && tokstart[0] == 'i'
3284 && tokstart[1] == 'f'
3298 if (strncmp (tokstart, "unsigned", 8) == 0)
3301 && strncmp (tokstart, "template", 8) == 0)
3303 if (strncmp (tokstart, "volatile", 8) == 0)
3307 if (strncmp (tokstart, "struct", 6) == 0)
3309 if (strncmp (tokstart, "signed", 6) == 0)
3311 if (strncmp (tokstart, "sizeof", 6) == 0)
3313 if (strncmp (tokstart, "double", 6) == 0)
3319 if (strncmp (tokstart, "false", 5) == 0)
3321 if (strncmp (tokstart, "class", 5) == 0)
3324 if (strncmp (tokstart, "union", 5) == 0)
3326 if (strncmp (tokstart, "short", 5) == 0)
3328 if (strncmp (tokstart, "const", 5) == 0)
3332 if (strncmp (tokstart, "enum", 4) == 0)
3334 if (strncmp (tokstart, "long", 4) == 0)
3338 if (strncmp (tokstart, "true", 4) == 0)
3343 if (strncmp (tokstart, "int", 3) == 0)
3350 yylval.sval.ptr = tokstart;
3353 if (*tokstart == '$')
3439 ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) ||
3440 (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
3443 hextype = parse_number (tokstart, namelen, 0, &newlval);