Searched refs:nextch (Results 1 – 5 of 5) sorted by relevance
1934 nextch, // Next char in file in get_token() local2019 nextch = fp->peek(); in get_token()2021 if (nextch == '*') in get_token()2026 while ((nextch = fp->get()) != EOF) in get_token()2028 if (ch == '*' && nextch == '/') in get_token()2031 ch = nextch; in get_token()2034 if (nextch == EOF) in get_token()2037 else if (nextch == '/') in get_token()2040 while ((nextch = fp->get()) != EOF) in get_token()2041 if (nextch == '\n') in get_token()[all …]
533 int nextch = input->get(); in getch() local534 if (ch == '\r' && nextch == '\n') in getch()537 ch = nextch; in getch()
252 static constexpr auto nextch{attempt(CharLiteralChar{})}; in Parse()253 while (auto ch{nextch.Parse(state)}) { in Parse()
2724 char nextch; in get_online_cpus() local2745 n = fscanf(cpus, "%d%c", &cpuid, &nextch); in get_online_cpus()2748 if (n == 2 && nextch == '-') { in get_online_cpus()