Searched refs:res (Results 1 - 25 of 1670) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.fortran-torture/compile/
H A Dmodule_result.f905 function test () result (res)
6 integer res local in function:test
7 res = 0
H A Dbergervoet2.f901 function testi() result(res)
2 integer :: res local in function:testi
3 res = 0
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dpack_vector_1.f907 INTEGER :: res(2) variable
8 res = PACK ((/ 1, 2, 3 /), (/.TRUE., .TRUE., .FALSE. /), SHAPE(1)) !{ dg-error "must provide at least as many" }
9 res = PACK ((/ 1, 2, 3 /), (/.TRUE., .TRUE., .FALSE. /), (/ -1 /)) !{ dg-error "must provide at least as many" }
H A Dasynchronous_2.f908 function func2() result(res)
9 asynchronous res ! { dg-error "Fortran 2003: ASYNCHRONOUS" }
H A Dresult_in_spec_3.f9013 FUNCTION test2() RESULT(res) ! { dg-warning "not set" }
14 character(*) :: res local in function:test2
H A Dassumed_rank_12.f9014 function f() result(res)
15 integer, pointer :: res local in function:f
H A Dcommon_9.f9018 function func1() result(res)
20 real res, r local in function:func1
21 common /res/ r ! { dg-error "is also a function result" } common in function:func1
H A Dresult_2.f907 function f() result(res)
8 interface res ! { dg-error "attribute conflicts with" }
H A Dmaxloc_bounds_4.f906 subroutine foo(res)
8 integer, dimension(:) :: res local in subroutine:foo
11 res = maxloc(f)
18 integer :: res(3) variable in program:main
19 call foo(res)
H A Dshape_4.f906 integer :: i,j, a(10,10),res(2) variable in program:main
9 res = shape(a(1:1,i:j:1))
10 if (res(1) /=1 .or. res(2) /= 0) call abort
11 res = shape(a(1:1,j:i:-1))
12 if (res(1) /=1 .or. res(2) /= 0) call abort
H A Danyallcount_1.f9010 character(len=3) :: res variable in program:main
18 write (unit=res,fmt=f) any(m1,dim=1)
19 if (res /= 'FTT') call abort
20 write (unit=res,fmt=f) any(m2,dim=1)
21 if (res /= 'FTT') call abort
22 write (unit=res,fmt=f) any(m4,dim=1)
23 if (res /= 'FTT') call abort
24 write (unit=res,fmt=f) any(m8,dim=1)
25 if (res /= 'FTT') call abort
26 write (unit=res,fm
[all...]
H A Dbounds_check_1.f904 integer :: res(1) variable
5 res = F()
6 if (res(1) /= 1) call abort
H A Dmaxloc_bounds_1.f906 integer(kind=4) :: res(3) variable in program:main
10 res = maxloc(f,dim=1)
11 write(line,fmt='(80I1)') res
H A Dunpack_bounds_1.f906 integer, allocatable, dimension(:,:) :: res variable in program:main
11 allocate (res(2,1))
15 res = unpack(vector, mask, 0)
16 print *,res
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/nios2/
H A Dnios2-rdwrctl-1.c3 volatile int res; variable
7 __builtin_wrctl (0, res);
8 __builtin_wrctl (15, res);
9 __builtin_wrctl (31, res);
11 res = __builtin_rdctl (0);
12 res = __builtin_rdctl (15);
13 res = __builtin_rdctl (31);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr52857-1.c8 int res; local
9 get_BID128 (&res);
/haiku-buildtools/libtool/f77demo/
H A Dfprogram.f10 integer*4 arg,res variable in program:fprogram
16 call fsub(arg,res)
18 write(*,*) 'fsub returned, saying that 2 *',arg,' =',res
20 if (res.eq.4) then
H A Dfoof.f8 subroutine fsub(arg,res)
10 integer*4 arg,res local in subroutine:fsub
11 res=arg*2
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20080114-1.c6 void stuck(int res) argument
9 if (res == 0) asm volatile("");
12 if (res == 0) asm volatile("" : : "i" (0));
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/lto/
H A Dpr46036_0.f904 function no_of_edges(self) result(res)
6 integer(kind=kind(1)) :: res local in function:no_of_edges
10 res = res + 1
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/graphite/
H A Disl-ast-gen-blocks-1.c8 int i, res; local
9 for (i = 0, res = 0; i < n; i++)
10 res += i;
12 return res;
20 int res = foo (); local
23 if (res != 1225)
H A Disl-ast-gen-blocks-2.c8 int i, res; local
9 for (i = 0, res = 0; i < k; i++)
10 res += i;
12 return res;
20 int res = foo (); local
23 if (res != 1225)
H A Disl-ast-gen-single-loop-1.c7 int i, res; local
9 for (i = 0, res = 0; i < 50; i++)
10 res += i;
12 return res;
20 int res = foo (); local
22 if (res != 1225)
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/m68k/
H A Dpr59946.c10 int res; local
16 res = copyNextDtaToAtari();
17 return res;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/sparc/
H A Dsparc-align-1.c11 int res; local
16 res = i - i;
19 res = i * 2;
23 return res;

Completed in 108 milliseconds

1234567891011>>