Searched refs:accumulate (Results 1 - 25 of 43) sorted by relevance

12

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dvariadic26.C3 struct accumulate { struct
8 struct accumulate<Meta, Initial, Value, Rest...> { struct
10 Meta<Value, accumulate<Meta, Initial, Rest...>::value>::value;
23 int a0[accumulate<sum,0,1,2,3,4,5>::value == 15? 1 : -1];
24 int a1[accumulate<prod,1,1,2,3,4,5>::value == 120? 1 : -1];
/haiku-buildtools/gcc/libstdc++-v3/testsuite/26_numerics/accumulate/requirements/explicit_instantiation/
H A D2.cc31 template value_type accumulate(iterator_type, iterator_type, value_type);
H A Dpod.cc31 template value_type accumulate(iterator_type, iterator_type, value_type);
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dstatic_cast.C4 void accumulate(InputIterator first, function
16 accumulate(0, static_cast<int (*)(int, R&)>(p) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/26_numerics/accumulate/
H A D1.cc18 // 26.4.1 [lib.accumulate]
31 int res = std::accumulate(A, A + NA, 11);
43 int res = std::accumulate(B, B + NB, 100);
H A D48750.cc61 NaturalParameters NP = std::accumulate(ChildrenNP.begin(),
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb59.C21 accumulate( v.begin(), v.end(), 0, static_cast<int (*)(int, R&)>(p) );
23 accumulate( v.begin(), v.end(), 0, p<R> );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/26_numerics/headers/numeric/
H A Dparallel_numeric_mixed2.cc41 std::accumulate(v.begin(), v.end(), value_type(1));
42 std::accumulate(v.begin(), v.end(), value_type(1), std::plus<value_type>());
43 __gnu_parallel::accumulate(v.begin(), v.end(), value_type(1));
44 __gnu_parallel::accumulate(v.begin(), v.end(), value_type(1),
H A Dparallel_numeric_mixed1.cc36 std::accumulate(v.begin(), v.end(), value_type(1));
37 std::accumulate(v.begin(), v.end(), value_type(1), std::plus<value_type>());
38 __gnu_parallel::accumulate(v.begin(), v.end(), value_type(1));
39 __gnu_parallel::accumulate(v.begin(), v.end(), value_type(1),
H A Dsynopsis.cc24 T accumulate(InputIterator first, InputIterator last, T init);
27 T accumulate(InputIterator first, InputIterator last, T init,
/haiku-buildtools/gcc/libstdc++-v3/testsuite/util/statistic/
H A Dsample_mean.hpp57 const PB_DS_VTYPE total = std::accumulate(b, e, PB_DS_VTYPE(0));
/haiku-buildtools/gcc/libstdc++-v3/include/parallel/
H A Dnumericfwd.h43 accumulate(_IIter, _IIter, _Tp);
47 accumulate(_IIter, _IIter, _Tp, __gnu_parallel::sequential_tag);
51 accumulate(_IIter, _IIter, _Tp, __gnu_parallel::_Parallelism);
59 accumulate(_IIter, _IIter, _Tp, _BinaryOper);
63 accumulate(_IIter, _IIter, _Tp, _BinaryOper,
68 accumulate(_IIter, _IIter, _Tp, _BinaryOper,
H A Dpartial_sum.h163 _ValueType(__gnu_parallel::accumulate(
/haiku-buildtools/legacy/gcc/libstdc++/
H A Dvalarray.cc5 template size_t accumulate(size_t*, size_t*, size_t, multiplies<size_t>);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/algorithm/
H A Dsample.cc42 VERIFY( std::accumulate(samp, samp + 10, 0) == 3 );
/haiku-buildtools/legacy/binutils/bfd/
H A Decofflink.c372 struct accumulate
408 PARAMS ((struct accumulate *, struct shuffle **, struct shuffle **,
413 struct accumulate *ainfo;
459 PARAMS ((struct accumulate *, struct shuffle **head, struct shuffle **tail,
464 struct accumulate *ainfo;
501 struct accumulate *ainfo;
502 bfd_size_type amt = sizeof (struct accumulate);
504 ainfo = (struct accumulate *) bfd_malloc (amt);
562 struct accumulate *ainfo = (struct accumulate *) handl
369 struct accumulate struct
[all...]
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Dalgo.h101 using __STD::accumulate;
H A Dstl_numeric.h38 _Tp accumulate(_InputIterator __first, _InputIterator __last, _Tp __init) function
46 _Tp accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, function
/haiku-buildtools/binutils/bfd/
H A Decofflink.c352 struct accumulate
388 add_file_shuffle (struct accumulate *ainfo,
434 add_memory_shuffle (struct accumulate *ainfo,
470 struct accumulate *ainfo;
471 bfd_size_type amt = sizeof (struct accumulate);
473 ainfo = (struct accumulate *) bfd_malloc (amt);
530 struct accumulate *ainfo = (struct accumulate *) handle;
560 struct accumulate *ainfo = (struct accumulate *) handl
350 struct accumulate struct
[all...]
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dstl_numeric.h120 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init) function
141 * @param __binary_op Function object to accumulate with.
146 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, function
199 * @param __binary_op1 Function object to accumulate with.
/haiku-buildtools/binutils/gas/testsuite/gas/mips/
H A Dvr4130.s333 # Check every affected multiply-accumulate instruction.
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/mips/
H A Dvr4130.s267 # Check every affected multiply-accumulate instruction.
/haiku-buildtools/gcc/gmp/mpn/pa64/
H A Dsqr_diagonal.asm67 ldd -16(rp),p00 C accumulate in int regs
/haiku-buildtools/gcc/gmp/mpn/x86/
H A Ddive_1.asm136 subl %ebx, %edx C accumulate carry bit
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/chan/
H A Dsieve2.go155 // will send to it, making the buffer accumulate and block this

Completed in 802 milliseconds

12