Home
last modified time | relevance | path

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

/freebsd-12-stable/sbin/pfctl/
Dpfctl_radix.c500 static char next_ch = ' '; in pfr_next_token() local
505 while (isspace(next_ch) && !feof(fp)) in pfr_next_token()
506 next_ch = fgetc(fp); in pfr_next_token()
508 if (next_ch == '#') in pfr_next_token()
510 next_ch = fgetc(fp); in pfr_next_token()
511 if (next_ch == '\n') in pfr_next_token()
518 next_ch = ' '; in pfr_next_token()
523 buf[i++] = next_ch; in pfr_next_token()
524 next_ch = fgetc(fp); in pfr_next_token()
525 } while (!feof(fp) && !isspace(next_ch)); in pfr_next_token()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
DSourceManager.cpp659 char next_ch = s[1]; in CalculateLineOffsets() local
660 if (is_newline_char(next_ch)) { in CalculateLineOffsets()
661 if (curr_ch != next_ch) in CalculateLineOffsets()