Searched refs:ch (Results 1 - 25 of 2367) sorted by relevance

1234567891011>>

/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dlex_char_uchar.c20 char ch = '\xff'; variable
H A Dmsg_294.c10 char ch = '1234'; variable
H A Dmsg_264.c9 char ch = '\v'; variable
H A Dmsg_263.c9 char ch = '\?'; variable
H A Dmsg_165.c11 unsigned char ch; local
14 /* expect+1: warning: 'ch' set but not used in function 'example' [191] */
15 ch = 0x1234;
/netbsd-current/external/bsd/openpam/dist/lib/libpam/
H A Dopenpam_ctype.h38 #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 <
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dlex_822.h19 #define IS_SPACE_TAB(ch) (ch == ' ' || ch == '\t')
20 #define IS_SPACE_TAB_CR_LF(ch) (IS_SPACE_TAB(ch) || ch == '\r' || ch == '\n')
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dc-support.h33 c_ident_is_alpha (unsigned char ch) argument
35 return ISALPHA (ch) || ch >= 0x80;
41 c_ident_is_alnum (unsigned char ch) argument
43 return ISALNUM (ch) || ch >= 0x80;
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dc-support.h33 c_ident_is_alpha (unsigned char ch) argument
35 return ISALPHA (ch) || ch >= 0x80;
41 c_ident_is_alnum (unsigned char ch) argument
43 return ISALNUM (ch) || ch >= 0x80;
/netbsd-current/external/cddl/osnet/dist/common/util/
H A Dstrtolctype.h49 #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) ((c
[all...]
/netbsd-current/external/bsd/less/dist/
H A Dmkhelp.pl15 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 e
[all...]
H A Dmkhelp.py12 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
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/ppc/
H A Dfilter_filename.c30 int ch; local
32 while ((ch = *p++) != '\0' && ch != ':')
33 if (ch == '/')
/netbsd-current/external/gpl3/gdb.old/dist/sim/igen/
H A Dfilter_host.c31 int ch; local
33 while ((ch = *p++) != '\0' && ch != ':')
34 if (ch == '/')
/netbsd-current/external/gpl3/gdb/dist/sim/igen/
H A Dfilter_host.c30 int ch; local
32 while ((ch = *p++) != '\0' && ch != ':')
33 if (ch == '/')
/netbsd-current/external/gpl3/gdb/dist/sim/ppc/
H A Dfilter_filename.c28 int ch; local
30 while ((ch = *p++) != '\0' && ch != ':')
31 if (ch == '/')
/netbsd-current/sys/arch/emips/stand/common/
H A Dputchar.c40 putchar(int ch) argument
42 PutChar((uint8_t)ch);
/netbsd-current/games/hangman/
H A Dgetguess.c52 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...]
/netbsd-current/sys/arch/sbmips/stand/common/
H A Dcfe.c45 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 */
/netbsd-current/sys/arch/evbmips/stand/sbmips/common/
H A Dcfe.c45 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 */
/netbsd-current/sys/kern/
H A Dsubr_callback.c38 callback_head_init(struct callback_head *ch, int ipl) argument
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) argument
62 callback_register(struct callback_head *ch, struct callback_entry *ce, void *obj, int (*fn)(struct callback_entry *, void *, void *)) argument
76 callback_unregister(struct callback_head *ch, struct callback_entry *ce) argument
91 callback_runone(struct callback_head *ch, void *arg) argument
111 callback_run_enter(struct callback_head *ch) argument
120 callback_run_leave(struct callback_head *ch) argument
132 callback_run_roundrobin(struct callback_head *ch, void *arg) argument
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dallprint.c44 int ch; local
48 for (cp = string; (ch = *(unsigned char *) cp) != 0; cp++)
49 if (!ISASCII(ch) || !ISPRINT(ch))
H A Dallspace.c44 int ch; local
48 for (cp = string; (ch = *(unsigned char *) cp) != 0; cp++)
49 if (!ISASCII(ch) || !ISSPACE(ch))
H A Dlowercase.c39 int ch; local
41 for (cp = string; (ch = *cp) != 0; cp++)
42 if (ISUPPER(ch))
43 *cp = TOLOWER(ch);
H A Duppercase.c39 int ch; local
41 for (cp = string; (ch = *cp) != 0; cp++)
42 if (ISLOWER(ch))
43 *cp = TOUPPER(ch);

Completed in 319 milliseconds

1234567891011>>