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

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dnet24.C3 char HexDigit(unsigned char ch) { return ch < 'f'; } argument
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Dthumb-comparisons.c5 int foo(char ch) argument
7 switch (ch) {
/haiku-buildtools/gcc/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 Dpr69102.c10 unsigned int ch; local
13 case 1: ch = 5; break;
14 case 2: ch = 4; break;
15 case 3: ch = 3; break;
16 case 4: ch = 2; break;
17 case 5: ch = 1; break;
18 default: ch = 0; break;
20 bar (ch);
H A D20030310-1.c11 char ch; local
12 foo (ch);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr39874.c8 char ch = signature[0]; local
9 if (ch == 15 || ch == 3)
11 if (ch == 15) func();
18 char ch = signature[0]; local
19 if (ch == 15 || ch == 3)
21 if (ch > 14) func();
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dfoldconst-1.c11 unsigned int ch; local
14 case 1: ch = 5; break;
15 case 2: ch = 4; break;
16 case 3: ch = 3; break;
17 case 4: ch = 2; break;
18 case 5: ch = 1; break;
19 default: ch = 0; break;
21 bar (ch);
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;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dfunc_result_2.f904 if (ch().ne."hello ") call abort()
6 function ch () result(str) function in program:testch
9 end function ch
H A Dunf_io_convert_4.f904 character (len=30) ch variable in program:main
6 inquire (10, convert=ch)
7 if (ch .ne. "LITTLE_ENDIAN") call abort
11 inquire (11, convert=ch)
12 if (ch .ne. "BIG_ENDIAN") call abort
H A Diomsg_1.f904 character(len=70) ch variable in program:iomsg_test
7 ch = 'asdf'
8 open(10, status='scratch', iomsg=ch, iostat=i)
9 if (ch .ne. 'asdf') call abort
12 read(10,'(I2)', iomsg=ch, end=100) k
15 if (ch .ne. 'End of file') call abort
18 open (-3, err=200, iomsg=ch)
22 if (ch .ne. 'Bad unit number in OPEN statement') call abort
25 close(23,status="no_idea", err=500, iomsg=ch) ! { dg-warning "STATUS specifier in CLOSE statement.*has invalid value" }
27 if (ch
[all...]
H A Dwarnings_are_errors_1.f908 function char_ (ch) ! { dg-error "Obsolescent feature" }
9 character(*) :: char_, ch local in function:char_
10 char_ = ch
H A Dsaved_automatic_1.f909 character(n1) :: ch local in subroutine:My
11 call xxx(myArray, ch)
17 character(n1), save :: ch ! { dg-error "SAVE attribute" } local in subroutine:Thy
18 call xxx(myArray, ch)
H A Dtransfer_array_intrinsic_2.f9012 character(8) :: ch(2) = (/"lmnoPQRS","LMNOpqrs"/) variable
26 call test3 (ch, ch, ch, 8)
46 character(4) :: ch(4) local in subroutine:test2
59 ch = "wxyz"
60 ch(1:2) = transfer (y(2:4:2), ch)
61 if (any (ch(1:2) .ne. (/"EFGH","MNOP"/))) call abort ()
62 ch
[all...]
H A Dassumed_charlen_function_3.f908 function is_OK (ch) ! { dg-warning "Obsolescent feature" }
9 character(*) is_OK, ch ! OK in an external function local in function:is_OK
10 is_OK = ch
14 function more_OK (ch, fcn) ! { dg-warning "Obsolescent feature" }
15 character(*) more_OK, ch local in function:more_OK
17 more_OK = fcn (ch)
33 function also_OK (ch)
35 character(*) ch local in function:also_OK
36 also_OK = is_OK (ch) ! LEN obtained by host association
H A Dftell_3.f907 character(1) :: ch variable in program:ftell_3
30 read(10, pos=7) ch
31 if (ch /= char(10)) call abort
35 read(10, pos=7) ch
36 if (ch /= char(13)) call abort
37 read(10) ch
38 if (ch /= char(10)) call abort
H A Dpr19467.f909 character(len=2) :: ch(2) variable in program:pr19467
11 namelist /a/ ch local in program:pr19467
13 write (10, *) "&A ch = 'aa' , 'bb' /"
17 if ((ier /= 0) .or. (any (ch /= dh))) call abort ()
/haiku-buildtools/gcc/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...]
H A D20031215-1.c6 typedef struct {int c, l; char ch[3];} pstr; member in struct:__anon1676
12 if (a->ch[a->l]) {
13 ((char *)a->ch)[a->l] = 0;
19 if (a->ch[a->l]) {
20 ((char *)a->ch)[a->l] = -1;
26 if (a->ch[a->l]) {
27 ((char *)a->ch)[a->l] = 1;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/graphite/
H A Dpr39260.c7 int gr, ch; local
11 for (ch = 0; ch < channels_out; ++ch)
12 if (max_nbits_ch[gr][ch] > 0)
13 s += f[ch];
14 for (ch = 0; ch < channels_out; ++ch)
16 max_nbits_ch[gr][ch]
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/lto/
H A D20080924_0.c7 int ch; local
8 while ((ch = *src++) != '\0') {
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tree-ssa/
H A Dpr47707.C7 unsigned char ch : 3; member in struct:CH
8 } ch; variable in typeref:struct:CH
24 ch.ch = len;
25 v1 = ch.ch;
/haiku-buildtools/legacy/gcc/libf2c/libI77/
H A Dlread.c82 { int ch; local
84 if((ch=getc(f__cf))!=EOF) return(ch);
91 int ch; local
94 while((ch=t_getc())!='\n')
95 if (ch == EOF) {
119 register int ch; local
140 switch(GETC(ch)) {
141 case '-': *sp++ = ch; sp1++; spe++;
143 GETC(ch);
280 { int ch, nml_save; local
345 int ch; local
393 { int ch,size,i; local
559 int i,n,ch; local
[all...]

Completed in 120 milliseconds

1234567891011>>