Lines Matching refs:rl78_lex_start
1348 rl78_lex_start = beginning; in rl78_lex_init()
1402 while (ISSPACE (*rl78_lex_start) in rl78_lex()
1403 && rl78_lex_start != rl78_lex_end) in rl78_lex()
1404 rl78_lex_start ++; in rl78_lex()
1406 rl78_last_exp_start = rl78_lex_start; in rl78_lex()
1408 if (rl78_lex_start == rl78_lex_end) in rl78_lex()
1411 if (ISALPHA (*rl78_lex_start) in rl78_lex()
1412 || (*rl78_lex_start == '.' && ISALPHA (rl78_lex_start[1]))) in rl78_lex()
1418 for (e = rl78_lex_start + 1; in rl78_lex()
1426 if (strcasecmp (rl78_lex_start, token_table[i].string) == 0 in rl78_lex()
1432 rl78_lex_start = e; in rl78_lex()
1448 if (*rl78_lex_start == '[') in rl78_lex()
1450 if (*rl78_lex_start == ']') in rl78_lex()
1458 && *rl78_lex_start == '.' in rl78_lex()
1459 && find_bit_index (rl78_lex_start) == rl78_lex_start) in rl78_lex()
1461 rl78_last_token = *rl78_lex_start; in rl78_lex()
1462 return *rl78_lex_start ++; in rl78_lex()
1465 if ((rl78_in_brackets && *rl78_lex_start == '+') in rl78_lex()
1466 || strchr ("[],#!$:", *rl78_lex_start)) in rl78_lex()
1468 rl78_last_token = *rl78_lex_start; in rl78_lex()
1469 return *rl78_lex_start ++; in rl78_lex()
1477 bit = find_bit_index (rl78_lex_start); in rl78_lex()
1485 input_line_pointer = rl78_lex_start; in rl78_lex()
1492 rl78_lex_start = input_line_pointer; in rl78_lex()