Searched refs:input_stream_pos (Results 1 – 2 of 2) sorted by relevance
43 static unichar *input_stream_pos = NULL; variable52 input_stream = input_stream_pos = unichar_dup (src); in mc_set_content()141 switch (input_stream_pos[0]) in parse_digit()143 case 'x': case 'X': base = 16; input_stream_pos++; break; in parse_digit()144 case 'o': case 'O': base = 8; input_stream_pos++; break; in parse_digit()145 case 'b': case 'B': base = 2; input_stream_pos++; break; in parse_digit()151 while ((ch = input_stream_pos[0]) != 0) in parse_digit()163 ++input_stream_pos; in parse_digit()165 if (input_stream_pos[0] == 'U' || input_stream_pos[0] == 'u') in parse_digit()166 input_stream_pos++; in parse_digit()[all …]