Home
last modified time | relevance | path

Searched refs:next_ch (Results 1 – 2 of 2) sorted by relevance

/linux-3.4.99/drivers/net/ppp/
Dppp_synctty.c113 register __u8 next_ch; in ppp_print_hex() local
117 next_ch = *in++; in ppp_print_hex()
118 *out++ = hex[(next_ch >> 4) & 0x0F]; in ppp_print_hex()
119 *out++ = hex[next_ch & 0x0F]; in ppp_print_hex()
127 register __u8 next_ch; in ppp_print_char() local
130 next_ch = *in++; in ppp_print_char()
132 if (next_ch < 0x20 || next_ch > 0x7e) in ppp_print_char()
135 *out++ = next_ch; in ppp_print_char()
136 if (next_ch == '%') /* printk/syslogd has a bug !! */ in ppp_print_char()
/linux-3.4.99/tools/perf/util/
Dtrace-event-parse.c439 int ch, last_ch, quote_ch, next_ch; in __read_token() local
468 next_ch = __peek_char(); in __read_token()
469 if (next_ch == '>') { in __read_token()