Home
last modified time | relevance | path

Searched refs:out_first (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Dlex.c238 lex->out_first = -1;
338 if (lex->out_first == -1 || lex->out_first >= lex->out_last)
340 lex->out_first = 0;
390 lex->out_first += 2;
395 lex->out_first += 2;
443 if (lex->out_first == -1 || lex->out_first >= lex->out_last)
450 result = * ((unicode_t *) &lex->out_buffer[lex->out_first]);
451 lex->out_first += 2;
H A Dlex.h150 int out_first; member
H A DChangeLog4797 * lex.c (java_new_lexer): Initialize out_first and out_last
4799 * lex.h (java_lexer): Added out_buffer, out_first, out_last.