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

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dnet24.C3 char HexDigit(unsigned char ch) { return ch < 'f'; } argument
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dnet24.C3 char HexDigit(unsigned char ch) { return ch < 'f'; } argument
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D990801-2.c4 int ch; local
5 while (!(ch = 0)) {
6 if ((ch == 0) || (ch == 2)) {
H A Dpr20583.c19 unsigned int ch; local
22 case 1: ch = 5; break;
23 case 2: ch = 4; break;
24 case 3: ch = 3; break;
25 case 4: ch = 2; break;
26 case 5: ch = 1; break;
27 default: ch = 0; break;
29 bar (ch);
H A D20030310-1.c11 char ch; local
12 foo (ch);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D990801-2.c4 int ch; local
5 while (!(ch = 0)) {
6 if ((ch == 0) || (ch == 2)) {
/netbsd-6-1-5-RELEASE/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-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/
H A Dpr20583.c19 unsigned int ch; local
22 case 1: ch = 5; break;
23 case 2: ch = 4; break;
24 case 3: ch = 3; break;
25 case 4: ch = 2; break;
26 case 5: ch = 1; break;
27 default: ch = 0; break;
29 bar (ch);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20000818-1.c8 static int ISALNUM (int ch);
9 static void obstack_1grow (void **ptr, int ch);
16 int ch = yylex (); local
23 int ch; local
28 ch = input ();
29 if (ISALNUM (ch))
30 obstack_1grow (&temporary_obstack, ch);
31 else if (ch != '_')
37 ch = input ();
38 if (ISALNUM (ch))
51 ISALNUM(int ch) argument
58 obstack_1grow(void **ptr, int ch) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20000818-1.c8 static int ISALNUM (int ch);
9 static void obstack_1grow (void **ptr, int ch);
16 int ch = yylex (); local
23 int ch; local
28 ch = input ();
29 if (ISALNUM (ch))
30 obstack_1grow (&temporary_obstack, ch);
31 else if (ch != '_')
37 ch = input ();
38 if (ISALNUM (ch))
51 ISALNUM(int ch) argument
58 obstack_1grow(void **ptr, int ch) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr24689.c12 unsigned int ch; local
15 case 1: ch = 5; break;
16 default: ch = 0; break;
19 bar (ch);
20 return ch;
H A Dloop-6.c4 int ch; variable
13 if (ch)
14 a[i] = ch;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/ppc/
H A Dfilter_filename.c31 int ch; local
33 while ((ch = *p++) != '\0' && ch != ':')
34 if (ch == '/')
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/igen/
H A Dfilter_host.c31 int ch; local
33 while ((ch = *p++) != '\0' && ch != ':')
34 if (ch == '/')
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/graphite/
H A Dpr39260.c6 int gr, ch; local
10 for (ch = 0; ch < channels_out; ++ch)
11 if (max_nbits_ch[gr][ch] > 0)
12 s += f[ch];
13 for (ch = 0; ch < channels_out; ++ch)
15 max_nbits_ch[gr][ch]
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/emips/stand/common/
H A Dputchar.c38 putchar(int ch) argument
40 PutChar((uint8_t)ch);
/netbsd-6-1-5-RELEASE/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-6-1-5-RELEASE/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-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/tree-ssa/
H A Dloop-6.c4 int ch; variable
13 if (ch)
14 a[i] = ch;
/netbsd-6-1-5-RELEASE/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 Dprintable.c47 int ch; local
49 for (cp = string; (ch = *(unsigned char *) cp) != 0; cp++)
50 if (!ISASCII(ch) || !ISPRINT(ch))
H A Duppercase.c39 int ch; local
41 for (cp = string; (ch = *cp) != 0; cp++)
42 if (ISLOWER(ch))
43 *cp = TOUPPER(ch);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/lto/
H A D20080924_0.c6 int ch; local
7 while ((ch = *src++) != '\0') {

Completed in 227 milliseconds

1234567891011>>