/external/llvm-project/pstl/include/pstl/internal/ |
D | parallel_impl.h | 31 template <class _ExecutionPolicy, class _Index, class _Brick, class _Compare> 32 _Index 33 __parallel_find(_ExecutionPolicy&& __exec, _Index __first, _Index __last, _Brick __f, _Compare __co… in __parallel_find() 35 typedef typename std::iterator_traits<_Index>::difference_type _DifferenceType; in __parallel_find() 41 [__comp, __f, __first, &__extremum](_Index __i, _Index __j) { in __parallel_find() 46 _Index __res = __f(__i, __j); in __parallel_find() 66 template <class _ExecutionPolicy, class _Index, class _Brick> 68 __parallel_or(_ExecutionPolicy&& __exec, _Index __first, _Index __last, _Brick __f) in __parallel_or() 72 [__f, &__found](_Index __i, _Index __j) { in __parallel_or()
|
D | parallel_backend_serial.h | 55 template <class _ExecutionPolicy, class _Index, class _Fp> 57 __parallel_for(_ExecutionPolicy&&, _Index __first, _Index __last, _Fp __f) in __parallel_for() 62 template <class _ExecutionPolicy, class _Value, class _Index, typename _RealBody, typename _Reducti… 64 __parallel_reduce(_ExecutionPolicy&&, _Index __first, _Index __last, const _Value& __identity, in __parallel_reduce() 77 template <class _ExecutionPolicy, class _Index, class _UnaryOp, class _Tp, class _BinaryOp, class _… 79 __parallel_transform_reduce(_ExecutionPolicy&&, _Index __first, _Index __last, _UnaryOp, _Tp __init… in __parallel_transform_reduce() 85 template <class _ExecutionPolicy, typename _Index, typename _Tp, typename _Rp, typename _Cp, typena… 87 __parallel_strict_scan(_ExecutionPolicy&&, _Index __n, _Tp __initial, _Rp __reduce, _Cp __combine, … in __parallel_strict_scan() 92 __sum = __combine(__sum, __reduce(_Index(0), __n)); in __parallel_strict_scan() 95 __scan(_Index(0), __n, __initial); in __parallel_strict_scan() [all …]
|
D | parallel_backend_tbb.h | 85 template <class _Index, class _RealBody> 92 operator()(const tbb::blocked_range<_Index>& __range) const in operator() 103 template <class _ExecutionPolicy, class _Index, class _Fp> 105 __parallel_for(_ExecutionPolicy&&, _Index __first, _Index __last, _Fp __f) in __parallel_for() 108 …tbb::parallel_for(tbb::blocked_range<_Index>(__first, __last), __parallel_for_body<_Index, _Fp>(__… in __parallel_for() 114 template <class _ExecutionPolicy, class _Value, class _Index, typename _RealBody, typename _Reducti… 116 __parallel_reduce(_ExecutionPolicy&&, _Index __first, _Index __last, const _Value& __identity, in __parallel_reduce() 121 tbb::blocked_range<_Index>(__first, __last), __identity, in __parallel_reduce() 122 [__real_body](const tbb::blocked_range<_Index>& __r, const _Value& __value) -> _Value { in __parallel_reduce() 138 template <class _Index, class _Up, class _Tp, class _Cp, class _Rp> [all …]
|
D | unseq_backend_simd.h | 64 template <class _Index, class _DifferenceType, class _Pred> 66 __simd_or(_Index __first, _DifferenceType __n, _Pred __pred) noexcept in __simd_or() 78 const _Index __last = __first + __n; in __simd_or() 104 template <class _Index, class _DifferenceType, class _Compare> 105 _Index 106 __simd_first(_Index __first, _DifferenceType __begin, _DifferenceType __end, _Compare __comp) noexc… in __simd_first() 218 template <class _Index, class _DifferenceType, class _Pred> 220 __simd_count(_Index __index, _DifferenceType __n, _Pred __pred) noexcept in __simd_count() 358 template <class _Index, class _DifferenceType, class _Tp> 359 _Index [all …]
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseRedux.h | 28 template<typename _Scalar, int _Options, typename _Index> 29 typename internal::traits<SparseMatrix<_Scalar,_Options,_Index> >::Scalar 30 SparseMatrix<_Scalar,_Options,_Index>::sum() const in sum() 39 template<typename _Scalar, int _Options, typename _Index> 40 typename internal::traits<SparseVector<_Scalar,_Options, _Index> >::Scalar 41 SparseVector<_Scalar,_Options,_Index>::sum() const in sum()
|
D | SparseVector.h | 409 template<typename _Scalar, int _Options, typename _Index> 410 struct evaluator<SparseVector<_Scalar,_Options,_Index> > 411 : evaluator_base<SparseVector<_Scalar,_Options,_Index> > 413 typedef SparseVector<_Scalar,_Options,_Index> SparseVectorType;
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
D | BlockOfDynamicSparseMatrix.h | 25 template<typename _Scalar, int _Options, typename _Index, int Size> 26 class SparseInnerVectorSet<DynamicSparseMatrix<_Scalar, _Options, _Index>, Size> 27 …: public SparseMatrixBase<SparseInnerVectorSet<DynamicSparseMatrix<_Scalar, _Options, _Index>, Siz… 29 typedef DynamicSparseMatrix<_Scalar, _Options, _Index> MatrixType;
|
D | BlockSparseMatrix.h | 59 template<typename _Scalar, int _BlockAtCompileTime, int _Options, typename _Index> 60 struct traits<BlockSparseMatrix<_Scalar,_BlockAtCompileTime,_Options, _Index> > 63 typedef _Index Index;
|
/external/eigen/Eigen/src/CholmodSupport/ |
D | CholmodSupport.h | 104 template<typename _Scalar, int _Options, typename _Index> 105 const cholmod_sparse viewAsCholmod(const SparseMatrix<_Scalar,_Options,_Index>& mat) 107 …cholmod_sparse res = viewAsCholmod(Ref<SparseMatrix<_Scalar,_Options,_Index> >(mat.const_cast_deri… 111 template<typename _Scalar, int _Options, typename _Index> 112 const cholmod_sparse viewAsCholmod(const SparseVector<_Scalar,_Options,_Index>& mat) 114 …cholmod_sparse res = viewAsCholmod(Ref<SparseMatrix<_Scalar,_Options,_Index> >(mat.const_cast_deri… 120 template<typename _Scalar, int _Options, typename _Index, unsigned int UpLo> 121 cholmod_sparse viewAsCholmod(const SparseSelfAdjointView<const SparseMatrix<_Scalar,_Options,_Index… 123 …cholmod_sparse res = viewAsCholmod(Ref<SparseMatrix<_Scalar,_Options,_Index> >(mat.matrix().const_…
|
/external/clang/lib/Headers/ |
D | intrin.h | 164 unsigned char _BitScanForward(unsigned long *_Index, unsigned long _Mask); 166 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask); 340 unsigned char _BitScanForward64(unsigned long *_Index, unsigned __int64 _Mask); 342 unsigned char _BitScanReverse64(unsigned long *_Index, unsigned __int64 _Mask); 503 _BitScanForward(unsigned long *_Index, unsigned long _Mask) { in _BitScanForward() argument 506 *_Index = __builtin_ctzl(_Mask); in _BitScanForward() 510 _BitScanReverse(unsigned long *_Index, unsigned long _Mask) { in _BitScanReverse() argument 513 *_Index = 31 - __builtin_clzl(_Mask); in _BitScanReverse() 553 _BitScanForward64(unsigned long *_Index, unsigned __int64 _Mask) { in _BitScanForward64() argument 556 *_Index = __builtin_ctzll(_Mask); in _BitScanForward64() [all …]
|
/external/llvm-project/clang/lib/Headers/ |
D | intrin.h | 133 unsigned char _BitScanForward(unsigned long *_Index, unsigned long _Mask); 134 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask); 250 unsigned char _BitScanForward64(unsigned long *_Index, unsigned __int64 _Mask); 251 unsigned char _BitScanReverse64(unsigned long *_Index, unsigned __int64 _Mask);
|
/external/llvm-project/libcxx/include/ |
D | array | 482 template <typename _Tp, size_t _Size, size_t... _Index> 484 __to_array_lvalue_impl(_Tp (&__arr)[_Size], index_sequence<_Index...>) { 485 return {{__arr[_Index]...}}; 488 template <typename _Tp, size_t _Size, size_t... _Index> 490 __to_array_rvalue_impl(_Tp(&&__arr)[_Size], index_sequence<_Index...>) { 491 return {{_VSTD::move(__arr[_Index])...}};
|
D | variant | 336 template <size_t _Index> 338 : integral_constant<size_t, _Index> {}; 617 template <size_t _Index, class _Tp> 629 template <_Trait _DestructibleTrait, size_t _Index, class... _Types> 632 template <_Trait _DestructibleTrait, size_t _Index> 633 union _LIBCPP_TEMPLATE_VIS __union<_DestructibleTrait, _Index> {}; 636 template <size_t _Index, class _Tp, class... _Types> \ 638 _Index, \ 665 __alt<_Index, _Tp> __head; \ 666 __union<destructible_trait, _Index + 1, _Types...> __tail; \
|
D | thread | 290 typedef typename __make_tuple_indices<tuple_size<_Fp>::value, 2>::type _Index; 291 _VSTD::__thread_execute(*__p.get(), _Index());
|
D | mutex | 620 typedef typename __make_tuple_indices<tuple_size<_Fp>::value, 1>::type _Index; 621 __execute(_Index());
|
D | future | 2179 typedef typename __make_tuple_indices<1+sizeof...(_Args), 1>::type _Index; 2180 return __execute(_Index());
|
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/ |
D | LevenbergMarquardt.h | 68 template <typename _Scalar, typename _Index> 72 typedef _Index Index;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | MathExtras.h | 34 unsigned char _BitScanForward(unsigned long *_Index, unsigned long _Mask); 35 unsigned char _BitScanForward64(unsigned long *_Index, unsigned __int64 _Mask); 36 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask); 37 unsigned char _BitScanReverse64(unsigned long *_Index, unsigned __int64 _Mask);
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | MathExtras.h | 35 unsigned char _BitScanForward(unsigned long *_Index, unsigned long _Mask); 36 unsigned char _BitScanForward64(unsigned long *_Index, unsigned __int64 _Mask); 37 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask); 38 unsigned char _BitScanReverse64(unsigned long *_Index, unsigned __int64 _Mask);
|
/external/libcxx/include/ |
D | variant | 333 template <size_t _Index> 335 : integral_constant<size_t, _Index> {}; 614 template <size_t _Index, class _Tp> 626 template <_Trait _DestructibleTrait, size_t _Index, class... _Types> 629 template <_Trait _DestructibleTrait, size_t _Index> 630 union _LIBCPP_TEMPLATE_VIS __union<_DestructibleTrait, _Index> {}; 633 template <size_t _Index, class _Tp, class... _Types> \ 635 _Index, \ 662 __alt<_Index, _Tp> __head; \ 663 __union<destructible_trait, _Index + 1, _Types...> __tail; \
|
D | thread | 351 typedef typename __make_tuple_indices<tuple_size<_Fp>::value, 2>::type _Index; 352 __thread_execute(*__p, _Index());
|
D | mutex | 613 typedef typename __make_tuple_indices<tuple_size<_Fp>::value, 1>::type _Index; 614 __execute(_Index());
|
D | future | 2317 typedef typename __make_tuple_indices<1+sizeof...(_Args), 1>::type _Index; 2318 return __execute(_Index());
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.Tree.pas | 1824 procedure _Index(const T: IANTLRInterface; 4089 _Index(T, Result); 4165 procedure TTreeWizard._Index(const T: IANTLRInterface; procedure 4184 _Index(FAdaptor.GetChild(T, I), M);
|
/external/python/cpython2/Demo/parser/ |
D | unparse.py | 511 def _Index(self, t): member in Unparser
|