Searched refs:rank (Results 1 - 25 of 107) sorted by relevance

12345

/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dcrash4.C3 template <unsigned rank>
8 template <unsigned rank>
9 class Tensor<2> : Tensor<rank> { // { dg-error "" } template parameters not used
H A Dexplicit15.C10 enum { rank = 0 }; enumerator in enum:ArraySectionInfo::__anon1323
18 rank = ArraySectionInfo<T1>::rank enumerator in enum:SliceInfo::__anon1324
21 typedef Array<rank> T_slice;
H A Dexplicit16.C10 enum { rank = 0 }; enumerator in enum:ArraySectionInfo::__anon1325
17 static const int rank = ArraySectionInfo<T1>::rank; member in class:SliceInfo
19 typedef Array<rank> T_slice;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Drank_4.f909 intrinsic :: rank
14 if (rank(a) /= 0) call not_existing()
15 if (rank (b) /= 2) call not_existing()
H A Dassumed_rank_8.f906 ! Scalars to assumed-rank tests
48 if (rank (x) /= 0) call abort
57 if (rank (x) /= 0) call abort ()
66 if (rank (x) /= 0) call abort
H A Dassumed_rank_9.f906 ! Scalars to assumed-rank tests
84 if (rank (x) /= 0) call abort
94 if (rank (x) /= 0) call abort ()
104 if (rank (x) /= 0) call abort
114 if (rank (x) /= 0) call abort
124 if (rank (x) /= 0) call abort ()
134 if (rank (x) /= 0) call abort
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/rank/
H A Dvalue.cc26 using std::rank;
29 static_assert(test_property<rank, int>(0), "");
30 static_assert(test_property<rank, int[2]>(1), "");
31 static_assert(test_property<rank, int[][4]>(2), "");
32 static_assert(test_property<rank, int[2][2][4][4][6][6]>(6), "");
33 static_assert(test_property<rank, ClassType>(0), "");
34 static_assert(test_property<rank, ClassType[2]>(1), "");
35 static_assert(test_property<rank, ClassType[][4]>(2), "");
36 static_assert(test_property<rank, ClassType[2][2][4][4][6][6]>(6), "");
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/rank/requirements/
H A Dexplicit_instantiation.cc28 template struct rank<test_type>;
H A Dtypedefs.cc29 typedef std::rank<int> test_type;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/4_metaprogramming/rank/
H A Dvalue.cc29 using std::tr1::rank;
32 VERIFY( (test_property<rank, int>(0)) );
33 VERIFY( (test_property<rank, int[2]>(1)) );
34 VERIFY( (test_property<rank, int[][4]>(2)) );
35 VERIFY( (test_property<rank, int[2][2][4][4][6][6]>(6)) );
36 VERIFY( (test_property<rank, ClassType>(0)) );
37 VERIFY( (test_property<rank, ClassType[2]>(1)) );
38 VERIFY( (test_property<rank, ClassType[][4]>(2)) );
39 VERIFY( (test_property<rank, ClassType[2][2][4][4][6][6]>(6)) );
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/graphite/
H A Did-3.c7 int rank; local
9 for (n = 0; n < rank; n++)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/4_metaprogramming/rank/requirements/
H A Dexplicit_instantiation.cc31 template struct rank<test_type>;
H A Dtypedefs.cc30 typedef std::tr1::rank<int> test_type;
/haiku-buildtools/gcc/liboffloadmic/runtime/
H A Dcean_util.cpp42 int64_t rank = ap->rank - 1; local
43 int64_t length = ap->dim[rank].size;
44 for (; rank >= 0; rank--) {
45 if (ap->dim[rank].stride == 1) {
46 length *= (ap->dim[rank].upper - ap->dim[rank].lower + 1);
47 if (rank > 0 && length != ap->dim[rank
108 int rank = 0; local
123 int64_t rank = ap->rank - 1; local
178 generate_mem_ranges_one_rank( const char *spaces, uint64_t base, uint64_t rank, const struct dim_desc *ddp, fpp fp, int esize ) argument
255 int64_t rank = adp->rank - 1; local
[all...]
H A Ddv_util.cpp89 int rank = dvp->Rank; local
92 if (rank != 0) {
96 for (i = 1; i < rank; i++) {
104 sizeof(CeanReadRanges) + (rank - i) * sizeof(CeanReadDim));
107 res -> last_noncont_ind = rank - i - 1;
109 for (; i < rank; i++) {
110 res->Dim[rank - i - 1].count = count;
111 res->Dim[rank - i - 1].size = dvp->Dim[i].Mult;
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20071018-1.c4 int rank; member in struct:foo
16 struct foo * __attribute__((noinline, noclone)) foo(int rank) argument
20 struct foo **upper = &as->x[rank * 8 - 5];
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Dfriend36.C4 template <int rank, int dim> class Tensor;
5 template <int rank, int dim> struct SymmetricTensor {
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lto/
H A D20100721-1_0.C4 template <int rank, int dim> class Tensor;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/goacc/
H A Dassumed.f9530 !$acc declare device_resident (a) ! { dg-error "Assumed rank" }
31 !$acc data copy (a) ! { dg-error "Assumed rank" }
33 !$acc data deviceptr (a) ! { dg-error "Assumed rank" }
35 !$acc parallel private (a) ! { dg-error "Assumed rank" }
37 !$acc host_data use_device (a) ! { dg-error "Assumed rank" }
39 !$acc parallel loop reduction(+:a) ! { dg-error "Assumed rank" }
43 !$acc update device (a) ! { dg-error "Assumed rank" }
44 !$acc update host (a) ! { dg-error "Assumed rank" }
45 !$acc update self (a) ! { dg-error "Assumed rank" }
/haiku-buildtools/gcc/libcilkrts/runtime/
H A Dpedigrees.h121 w->pedigree.rank = sf->spawn_helper_pedigree.rank + 1;
H A Dpedigrees.c96 w->l->original_pedigree_leaf->rank = w->pedigree.rank;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/g77/
H A D990115-1.f8 integer rank local in subroutine:ZGELSX
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/vect/
H A Dpr33301.f8 integer rank local in subroutine:ZGELSX
/haiku-buildtools/gcc/libcilkrts/include/cilk/
H A Dcilk_api.h274 * then this method returns a node with rank == 4, and whose parent
275 * field points to the node with rank of 3. In summary, following the
329 /** Get the rank of the currently executing worker.
332 * Use `__cilkrts_get_pedigree().rank` instead.
334 * @returns 0 - Success - *rank is valid
335 * @returns <0 - Failure - *rank is not changed
338 int __cilkrts_get_worker_rank(uint64_t *rank) argument
340 *rank = __cilkrts_get_pedigree().rank;
344 /** Increment the pedigree rank o
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/graphite/
H A Dpr43026.C6 template <int rank, int dim> class Tensor;
26 template <int rank, int dim>
28 Tensor<rank-1,dim> subtensor[dim];

Completed in 93 milliseconds

12345