Searched refs:arg (Results 1 - 25 of 1166) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dvolatile12.f907 subroutine sub(arg)
8 integer, volatile :: arg
9 if (arg /= arg) call I_dont_exist()
12 ! { dg-final { scan-tree-dump "integer.kind=.. . volatile arg" "optimized" } }
13 ! { dg-final { scan-tree-dump-times " =.v. arg;" 2 "optimized" } }
H A Dfunc_result_1.f907 function foo (arg) result(ptr)
8 integer :: arg local in function:foo
11 ptr = arg
13 function bar (arg)
14 integer :: arg local in function:bar
17 bar = arg
H A Dassumed_charlen_needed_1.f9010 function fun (arg)
11 character (*) :: arg (10) local in function:fun
12 integer :: fun(size(arg))
H A Dassumed_rank_bounds_1.f9025 subroutine foo(arg)
26 integer :: arg(..) local in subroutine:foo
28 !print *, lbound(arg)
29 !print *, id(lbound(arg))
30 if (any(lbound(arg) /= [1, 1])) call abort
31 if (any(id(lbound(arg)) /= [1, 1])) call abort
33 write(buffer,*) lbound(arg)
36 write(buffer,*) id(lbound(arg))
39 !print *, ubound(arg)
40 !print *, id(ubound(arg))
63 integer, allocatable :: arg local in subroutine:bar
100 integer, pointer :: arg local in subroutine:baz
137 integer, intent(in) :: arg local in function:id
[all...]
H A Dintrinsic_std_4.f9014 REAL FUNCTION asinh (arg)
16 REAL :: arg local in function:asinh
19 asinh = arg
H A Dspec_expr_1.f905 function testpresent(arg)
6 integer, intent(in), optional :: arg local in function:testpresent
7 character(len=arg) :: s ! { dg-error "OPTIONAL" }
H A Drecursive_interface_2.f909 subroutine foo (arg)
10 procedure(foo) :: arg
12 function foo2 (arg) result(r)
13 procedure(foo2) :: arg
16 subroutine bar (arg)
17 procedure(baz) :: arg
19 subroutine baz (arg)
20 procedure(bar) :: arg
H A Dsave_2.f9012 subroutine bar(arg)
13 integer arg local in subroutine:bar
14 double precision arr(arg)
15 do i = 1, arg
18 do i = 1, arg
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dbool4.C3 void foo(bool arg = (1==0)) {}
/haiku-buildtools/libtool/f77demo/
H A Dfprogram.f10 integer*4 arg,res variable in program:fprogram
14 arg=2
16 call fsub(arg,res)
18 write(*,*) 'fsub returned, saying that 2 *',arg,' =',res
H A Dfoof.f8 subroutine fsub(arg,res)
10 integer*4 arg,res local in subroutine:fsub
11 res=arg*2
H A Dfooc.c4 int csub(int arg) argument
6 return (2*arg);
10 int fwrapper(int arg) argument
14 F77_FUNC(fsub,FSUB)(&arg,&res);
H A Dcprogram.c22 int arg,cres,fres; local
26 arg=2;
28 cres=csub(arg);
30 printf ("The C subroutine returned, claiming that 2*%d = %d\n",arg,cres);
32 if(cres==2*arg)
36 fres=fwrapper(arg);
39 "claiming that 2*%d = %d\n",arg,fres);
41 if(fres==2*arg)
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/sh/
H A Dpr55146.c8 test (int arg) argument
11 switch (arg)
18 : "r" (arg));
25 : "r" (arg));
32 : "r" (arg));
39 : "r" (arg));
46 : "r" (arg));
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr18712.c1 void *eintr_source (void *arg) argument
5 if (arg)
10 if (arg)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr50078.c8 test (int arg) argument
10 unsigned v = *(volatile unsigned *) (&nonvolvar[arg]);
11 *(volatile unsigned *) (&nonvolvar[arg]) = v;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/ipa/
H A Dipa-clone-1.c7 foo (int arg) argument
9 return 7 * arg;
13 bar (int arg) argument
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/sh/torture/
H A Dpr67260.c6 double _Complex foo (double _Complex arg);
9 bar (double _Complex arg) argument
11 return foo (arg);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/abi/
H A Dparam2.C9 foo (S arg) argument
11 return arg;
17 S arg; local
18 foo (arg);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D961026-1.c2 test (arg)
3 int arg;
5 if (arg > 0 || arg == 0)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/cpp/
H A D19990228-1.c5 #define foo(string, arg) bar(2, string, arg)
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Dpr50099.c4 long long foo (signed char * arg) argument
8 temp_1 = arg[256];
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-overflow2.C4 char constexpr sub(char arg) argument
5 { return char(arg - char(1)); }
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/stackalign/
H A Dbuiltin-apply-4.c9 foo (int arg) argument
11 if (arg != 116)
13 return arg + 1;
17 bar (int arg) argument
19 foo (arg);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dbuiltin-apply-mmx.c21 foo (double arg) argument
23 if (arg != 116.0)
26 return arg + 1.0;
30 bar (double arg) argument
32 foo (arg);

Completed in 765 milliseconds

1234567891011>>