| /src/tests/usr.bin/xlint/lint1/ |
| lex_char_uchar.c | 20 char ch = '\xff'; variable
|
| msg_294.c | 10 char ch = '1234'; variable
|
| msg_263.c | 9 char ch = '\?'; variable
|
| msg_264.c | 9 char ch = '\v'; variable
|
| msg_165.c | 11 unsigned char ch; local 14 /* expect+1: warning: 'ch' set but not used in function 'example' [191] */ 15 ch = 0x1234;
|
| /src/external/bsd/openpam/dist/lib/libpam/ |
| openpam_ctype.h | 38 #define is_digit(ch) \ 39 (ch >= '0' && ch <= '9') 44 #define is_xdigit(ch) \ 45 ((ch >= '0' && ch <= '9') || \ 46 (ch >= 'a' && ch <= 'f') || \ 47 (ch >= 'A' && ch <= 'F') [all...] |
| /src/external/ibm-public/postfix/dist/src/global/ |
| lex_822.h | 19 #define IS_SPACE_TAB(ch) (ch == ' ' || ch == '\t') 20 #define IS_SPACE_TAB_CR_LF(ch) (IS_SPACE_TAB(ch) || ch == '\r' || ch == '\n')
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| c-support.h | 33 c_ident_is_alpha (unsigned char ch) 35 return ISALPHA (ch) || ch >= 0x80; 41 c_ident_is_alnum (unsigned char ch) 43 return ISALNUM (ch) || ch >= 0x80;
|
| /src/external/gpl3/gdb/dist/gdb/ |
| c-support.h | 33 c_ident_is_alpha (unsigned char ch) 35 return ISALPHA (ch) || ch >= 0x80; 41 c_ident_is_alnum (unsigned char ch) 43 return ISALNUM (ch) || ch >= 0x80;
|
| /src/external/cddl/osnet/dist/common/util/ |
| strtolctype.h | 49 #define isalnum(ch) (isalpha(ch) || isdigit(ch)) 50 #define isalpha(ch) (isupper(ch) || islower(ch)) 51 #define isdigit(ch) ((ch) >= '0' && (ch) <= '9') 52 #define islower(ch) ((ch) >= 'a' && (ch) <= 'z' [all...] |
| /src/external/bsd/less/dist/ |
| mkhelp.py | 12 ch = 0 variable 14 prevch = ch 15 ch = sys.stdin.read(1) variable 16 if ch == '': 18 if (ch == "'"): 20 elif (ch == "\\"): 22 elif (ch == "\b"): 24 elif (ch == "\t"): 26 elif (ch == "\n"): 28 elif (ch == "\r") [all...] |
| mkhelp.pl | 15 my $ch = 0; 18 $prevch = $ch; 19 $ch = getc(); 20 last if not defined $ch; 21 if ($ch eq "'") { 23 } elsif ($ch eq "\\") { 25 } elsif ($ch eq "\b") { 27 } elsif ($ch eq "\t") { 29 } elsif ($ch eq "\n") { 31 } elsif ($ch eq "\r") [all...] |
| /src/external/gpl3/gdb.old/dist/sim/igen/ |
| filter_host.c | 30 int ch; local 32 while ((ch = *p++) != '\0' && ch != ':') 33 if (ch == '/')
|
| /src/external/gpl3/gdb/dist/sim/igen/ |
| filter_host.c | 30 int ch; local 32 while ((ch = *p++) != '\0' && ch != ':') 33 if (ch == '/')
|
| /src/sys/arch/emips/stand/common/ |
| putchar.c | 40 putchar(int ch) 42 PutChar((uint8_t)ch);
|
| /src/games/hangman/ |
| getguess.c | 52 int ch; local 59 ch = readch(); 60 if (isalpha(ch)) { 61 if (isupper(ch)) 62 ch = tolower(ch); 63 if (Guessed[ch - 'a']) 65 ch); 69 if (ch == CTRL('D')) 73 "Not a valid guess: '%s'", unctrl(ch)); 97 char ch; local [all...] |
| /src/sys/arch/evbmips/stand/sbmips/common/ |
| cfe.c | 45 char ch; local 48 while ((res = cfe_read(conhandle,&ch,1)) == 0) ; /* null loop */ 49 return (res < 0) ? -1 : ch; 54 char ch; local 56 ch = (char) c; 57 if (ch == '\n') 59 while (cfe_write(conhandle,&ch,1) == 0) ; /* null loop */
|
| /src/sys/arch/sbmips/stand/common/ |
| cfe.c | 45 char ch; local 48 while ((res = cfe_read(conhandle,&ch,1)) == 0) ; /* null loop */ 49 return (res < 0) ? -1 : ch; 54 char ch; local 56 ch = (char) c; 57 if (ch == '\n') 59 while (cfe_write(conhandle,&ch,1) == 0) ; /* null loop */
|
| /src/sys/kern/ |
| subr_callback.c | 38 callback_head_init(struct callback_head *ch, int ipl) 41 memset(ch, 0, sizeof(struct callback_head)); 42 mutex_init(&ch->ch_lock, MUTEX_DEFAULT, ipl); 43 cv_init(&ch->ch_cv, "callback"); 44 TAILQ_INIT(&ch->ch_q); 46 ch->ch_next = NULL; 47 ch->ch_nentries = 0; 48 ch->ch_running = 0; 49 ch->ch_flags = 0; 54 callback_head_destroy(struct callback_head *ch) [all...] |
| /src/external/ibm-public/postfix/dist/src/util/ |
| allprint.c | 44 int ch; local 48 for (cp = string; (ch = *(unsigned char *) cp) != 0; cp++) 49 if (!ISASCII(ch) || !ISPRINT(ch))
|
| allspace.c | 44 int ch; local 48 for (cp = string; (ch = *(unsigned char *) cp) != 0; cp++) 49 if (!ISASCII(ch) || !ISSPACE(ch))
|
| lowercase.c | 39 int ch; local 41 for (cp = string; (ch = *cp) != 0; cp++) 42 if (ISUPPER(ch)) 43 *cp = TOLOWER(ch);
|
| uppercase.c | 39 int ch; local 41 for (cp = string; (ch = *cp) != 0; cp++) 42 if (ISLOWER(ch)) 43 *cp = TOUPPER(ch);
|
| /src/external/bsd/ntp/dist/ntpd/ |
| rc_cmdlength.c | 24 unsigned char ch; local 28 ch = src_end[-1]; 29 if (ch > ' ' && ch < 128) 35 ch = scan[0]; 36 if ((ch < ' ' || ch >= 128) && ch != '\t')
|
| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_channel.c | 46 DEFINE_LIST_OF_IMPL(ch, QUIC_CHANNEL); 48 static void ch_save_err_state(QUIC_CHANNEL *ch); 49 static int ch_rx(QUIC_CHANNEL *ch, int channel_only, int *notify_other_threads); 50 static int ch_tx(QUIC_CHANNEL *ch, int *notify_other_threads); 51 static int ch_tick_tls(QUIC_CHANNEL *ch, int channel_only, int *notify_other_threads); 52 static void ch_rx_handle_packet(QUIC_CHANNEL *ch, int channel_only); 53 static OSSL_TIME ch_determine_next_tick_deadline(QUIC_CHANNEL *ch); 54 static int ch_retry(QUIC_CHANNEL *ch, 59 static int ch_restart(QUIC_CHANNEL *ch); 61 static void ch_cleanup(QUIC_CHANNEL *ch); 140 QUIC_CHANNEL *ch = arg; local 461 QUIC_CHANNEL *ch = NULL; local 699 QUIC_CHANNEL *ch = arg; local 707 QUIC_CHANNEL *ch = arg; local 718 QUIC_CHANNEL *ch = arg; local 857 QUIC_CHANNEL *ch = arg; local 943 QUIC_CHANNEL *ch = arg; local 964 QUIC_CHANNEL *ch = arg; local 993 QUIC_CHANNEL *ch = arg; local 1030 QUIC_CHANNEL *ch = arg; local 1053 QUIC_CHANNEL *ch = arg; local 1130 QUIC_CHANNEL *ch = arg; local 1200 QUIC_CHANNEL *ch = arg; local 1283 QUIC_CHANNEL *ch = arg; local 1302 QUIC_CHANNEL *ch = arg; local [all...] |