Searched refs:ret (Results 1 - 25 of 2136) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dmatmul_bounds_2.f907 real, dimension(:,:), allocatable :: ret variable in program:main
8 allocate (ret(2,2))
11 ret = matmul(b,a) ! This is OK
12 deallocate(ret)
13 allocate(ret(3,2))
14 ret = matmul(a,b) ! This should throw an error.
H A Dmatmul_bounds_3.f907 real, dimension(:,:), allocatable :: ret variable in program:main
8 allocate (ret(3,3))
11 ret = matmul(a,b) ! This is OK
12 deallocate(ret)
13 allocate(ret(2,3))
14 ret = matmul(a,b) ! This should throw an error.
H A Dmatmul_bounds_4.f907 real, dimension(:), allocatable :: ret variable in program:main
8 allocate (ret(2))
11 ret = matmul(a,b) ! This is OK
12 deallocate(ret)
13 allocate(ret(3))
14 ret = matmul(a,b) ! This should throw an error.
H A Dmatmul_bounds_5.f907 real, dimension(:), allocatable :: ret variable in program:main
8 allocate (ret(2))
11 ret = matmul(a,b) ! This is OK
12 deallocate(ret)
13 allocate(ret(3))
14 ret = matmul(a,b) ! This should throw an error.
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dasm3.C7 uint64 ret; local
8 asm volatile("fstps %0" : "=m" (ret));
9 return ret;
H A Dgoto4.C5 int ret = 1; variable
9 ~A() { ret = 0; }
26 return ret;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dwinline-1.c7 int ret; local
9 ret = t(); /* We define sane semantics for inline keyword on recursive
12 return ret;
H A Dparse-decl-after-label.c15 int ret = 1; /* { dg-error "a label can only be part of a statement and a declaration is not a statement" } */ local
16 return ret;
H A Dslp-1.c11 struct R ret; local
12 ret.d1 = arg.d2 * (0.0 - arg.d1);
13 ret.d2 = ret.d1;
14 return ret;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/powerpc/
H A Dpr68872.c10 long ret; local
12 asm volatile ("mfcr %0,8" : "=r" (ret) ::);
13 return ret;
/haiku-buildtools/binutils/gas/testsuite/gas/z8k/
H A Dret-cc.s3 ret f
4 ret lt
5 ret le
6 ret ule
7 ret ov
8 ret pe
9 ret mi
10 ret eq
11 ret z
12 ret
[all...]
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/z8k/
H A Dret-cc.s3 ret f
4 ret lt
5 ret le
6 ret ule
7 ret ov
8 ret pe
9 ret mi
10 ret eq
11 ret z
12 ret
[all...]
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/gomp/
H A Dpr57580.c10 ret = 0; \
17 int ret; local
22 ret = 0;
25 _Pragma("omp parallel num_threads(4)") { _Pragma("omp single") { ret = 0; } }
26 { _Pragma("omp parallel num_threads(5)") { _Pragma("omp single") { ret = 0; } } }
29 return ret;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/init/
H A Darray14.C7 int ret = 1; variable
12 ~X() { ret = 0; }
20 return ret;
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr15245.c9 char *ret = (char*)0; local
17 ret = (char*)1;
20 return ret;
H A Dpr38428.c14 int ret; local
16 ret = 0;
18 ret = 10;
19 return ret;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dssa-sink-6.c6 int ret = 0; local
11 ret = r + 20;
12 return ret;
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/ubsan/
H A Dpr64906.c8 int ret = 0; local
10 ret = s / (f ? (unsigned long) 8 : 0);
11 return ret;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/lto/
H A D20090116_0.c7 int ret, i; local
9 ret = 0;
11 ret = 1;
12 return ret;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/debug/dwarf2/
H A Ddiscriminator.c10 int i, ret = 0; local
13 ret++;
15 ret--;
17 return ret;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/8_c_compatibility/cctype/
H A Dfunctions.cc30 int ch = 0, ret; local
31 ret = std::tr1::isblank(ch);
32 ret = ret; // Suppress unused warning.
/haiku-buildtools/gcc/gcc/testsuite/go.go-torture/execute/
H A Dstruct-2.go5 var ret s = s{1, 2};
6 if ret.y - (ret.x + ret.x) != 0 { panic(0) }
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/asan/
H A Dno-redundant-instrumentation-3.c9 __INT32_TYPE__ ret = *(char *) p; local
12 return ret;
/haiku-buildtools/binutils/gold/
H A Dffsll.c37 int ret; local
40 ret = 0;
43 ret = 1;
45 ++ret;
47 return ret;
/haiku-buildtools/gcc/libgomp/
H A Dalloc.c37 void *ret = malloc (size); local
38 if (ret == NULL)
40 return ret;
46 void *ret = calloc (1, size); local
47 if (ret == NULL)
49 return ret;
55 void *ret = realloc (old, size); local
56 if (ret == NULL)
58 return ret;

Completed in 173 milliseconds

1234567891011>>