Searched refs:input_stream_pos (Results 1 – 1 of 1) sorted by relevance
43 static unichar *input_stream_pos = NULL; variable52 input_stream = input_stream_pos = unichar_dup (src); in mc_set_content()136 switch (input_stream_pos[0]) in parse_digit()138 case 'x': case 'X': base = 16; input_stream_pos++; break; in parse_digit()139 case 'o': case 'O': base = 8; input_stream_pos++; break; in parse_digit()140 case 'b': case 'B': base = 2; input_stream_pos++; break; in parse_digit()146 while ((ch = input_stream_pos[0]) != 0) in parse_digit()158 ++input_stream_pos; in parse_digit()160 if (input_stream_pos[0] == 'U' || input_stream_pos[0] == 'u') in parse_digit()161 input_stream_pos++; in parse_digit()[all …]