/external/tensorflow/tensorflow/core/example/ |
D | feature_util.h | 281 template <typename IteratorType> 282 void AppendFeatureValues(IteratorType first, IteratorType last, 285 typename std::iterator_traits<IteratorType>::value_type>::Type; 299 using IteratorType = typename ContainerType::const_iterator; 300 AppendFeatureValues<IteratorType>(container.begin(), container.end(), 306 template <typename IteratorType, typename ProtoType> 307 void AppendFeatureValues(IteratorType first, IteratorType last, 316 using IteratorType = typename ContainerType::const_iterator; 317 AppendFeatureValues<IteratorType>(container.begin(), container.end(), key, 326 using IteratorType = [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/ |
D | iterator.h | 113 template <typename IteratorType> 116 IteratorRange(const IteratorType& b, const IteratorType& e) in IteratorRange() 118 IteratorRange(IteratorType&& b, IteratorType&& e) in IteratorRange() 121 IteratorType begin() const { return begin_; } in begin() 122 IteratorType end() const { return end_; } in end() 128 IteratorType begin_; 129 IteratorType end_; 134 template <typename IteratorType> 135 inline IteratorRange<IteratorType> make_range(const IteratorType& begin, in make_range() 136 const IteratorType& end) { in make_range() [all …]
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | iterator.h | 117 template <typename IteratorType> 120 IteratorRange(const IteratorType& b, const IteratorType& e) in IteratorRange() 122 IteratorRange(IteratorType&& b, IteratorType&& e) in IteratorRange() 125 IteratorType begin() const { return begin_; } in begin() 126 IteratorType end() const { return end_; } in end() 132 IteratorType begin_; 133 IteratorType end_; 138 template <typename IteratorType> 139 inline IteratorRange<IteratorType> make_range(const IteratorType& begin, in make_range() 140 const IteratorType& end) { in make_range() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | iterator.h | 117 template <typename IteratorType> 120 IteratorRange(const IteratorType& b, const IteratorType& e) in IteratorRange() 122 IteratorRange(IteratorType&& b, IteratorType&& e) in IteratorRange() 125 IteratorType begin() const { return begin_; } in begin() 126 IteratorType end() const { return end_; } in end() 132 IteratorType begin_; 133 IteratorType end_; 138 template <typename IteratorType> 139 inline IteratorRange<IteratorType> make_range(const IteratorType& begin, in make_range() 140 const IteratorType& end) { in make_range() [all …]
|
/external/llvm-project/mlir/lib/Dialect/Linalg/EDSC/ |
D | Builders.cpp | 25 ArrayRef<IteratorType> iteratorTypes, ArrayRef<StructuredIndexed> inputs, in makeGenericLinalgOp() 114 SmallVector<IteratorType, 4> iterTypes(O.getExprs().size(), in linalg_generic_pointwise() 115 IteratorType::Parallel); in linalg_generic_pointwise() 139 SmallVector<IteratorType, 4> iterTypes(O.getExprs().size(), in linalg_generic_pointwise() 140 IteratorType::Parallel); in linalg_generic_pointwise() 182 {IteratorType::Parallel, IteratorType::Parallel, IteratorType::Reduction}, in linalg_generic_matmul() 200 {IteratorType::Parallel, IteratorType::Parallel, IteratorType::Reduction}, in linalg_generic_matmul() 219 auto par = IteratorType::Parallel; in linalg_generic_conv_nhwc() 220 auto red = IteratorType::Reduction; in linalg_generic_conv_nhwc() 255 auto par = IteratorType::Parallel; in linalg_generic_dilated_conv_nhwc() [all …]
|
/external/llvm-project/mlir/lib/Dialect/Vector/EDSC/ |
D | Builders.cpp | 23 ArrayRef<IteratorType> iteratorTypes) { in vector_contraction() 38 {IteratorType::Parallel, IteratorType::Parallel, in vector_contraction_matmul() 39 IteratorType::Reduction}); in vector_contraction_matmul()
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-loop-convert/ |
D | structures.h | 148 template<typename IteratorType> 150 typedef IteratorType* iterator; 151 typedef const IteratorType* const_iterator; 152 IteratorType *operator->(); 153 IteratorType operator*();
|
/external/llvm-project/mlir/include/mlir/Dialect/Utils/ |
D | StructuredOpsUtils.h | 124 enum class IteratorType { Parallel, Reduction }; enum 126 inline StringRef toString(IteratorType t) { in toString() 128 case IteratorType::Parallel: in toString() 130 case IteratorType::Reduction: in toString()
|
/external/openscreen/discovery/mdns/ |
D | mdns_records.h | 36 template <typename IteratorType> 37 static ErrorOr<DomainName> TryCreate(IteratorType first, IteratorType last) { in TryCreate() 41 for (IteratorType entry = first; entry != last; ++entry) { in TryCreate() 57 template <typename IteratorType> 58 DomainName(IteratorType first, IteratorType last) { in DomainName()
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | shape_tree.h | 71 template <typename ContainerType, typename IteratorType, typename ValueType> 73 template <typename ContainerType, typename IteratorType, typename ValueType> 342 template <typename ContainerType, typename IteratorType, typename ValueType> 346 ShapeTreeIterator(ContainerType* nodes, IteratorType node) in ShapeTreeIterator() 380 IteratorType node_; 386 template <typename ContainerType, typename IteratorType, typename ValueType> 390 ShapeTreeLeafIterator(ContainerType* nodes, IteratorType node) in ShapeTreeLeafIterator() 434 IteratorType node_;
|
/external/protobuf/src/google/protobuf/ |
D | reflection.h | 70 typedef typename internal::RefTypeTraits<T>::iterator IteratorType; typedef 78 typedef IteratorType iterator; 79 typedef IteratorType const_iterator; 158 typedef typename internal::RefTypeTraits<T>::iterator IteratorType; typedef 180 typedef IteratorType iterator; 181 typedef IteratorType const_iterator;
|
D | map_test.cc | 460 template <typename IteratorType> 463 IteratorType it = m->begin(); in TestOldVersusNewIterator() 467 const IteratorType old = it; in TestOldVersusNewIterator() 475 const IteratorType after_growth = m->find(old->first); in TestOldVersusNewIterator() 476 TestEqualIterators<IteratorType>(old, after_growth, m->end()); in TestOldVersusNewIterator() 490 TestEqualIterators<IteratorType>(old, m->find(old->first), m->end()); in TestOldVersusNewIterator() 491 TestEqualIterators<IteratorType>(old, after_growth, m->end()); in TestOldVersusNewIterator()
|
/external/eigen/Eigen/src/Core/ |
D | CoreIterators.h | 36 …:inner_iterator_selector<XprType, typename internal::evaluator_traits<XprType>::Kind> IteratorType; typedef 62 IteratorType m_iter;
|
/external/llvm-project/mlir/include/mlir/Dialect/Vector/EDSC/ |
D | Builders.h | 38 ArrayRef<IteratorType> iteratorTypes);
|
/external/eigen/test/ |
D | sparse_basic.cpp | 591 typedef typename SparseMatrixType::InnerIterator IteratorType; in sparse_basic() typedef 596 IteratorType static_array[2]; in sparse_basic() 597 static_array[0] = IteratorType(m2,0); in sparse_basic() 598 static_array[1] = IteratorType(m2,m2.outerSize()-1); in sparse_basic() 604 static_array[1] = IteratorType(m2,0); in sparse_basic() 611 std::vector<IteratorType> iters(2); in sparse_basic() 612 iters[0] = IteratorType(m2,0); in sparse_basic() 613 iters[1] = IteratorType(m2,m2.outerSize()-1); in sparse_basic()
|
/external/mesa3d/include/CL/ |
D | cl2.hpp | 3432 template< typename IteratorType > 3433 cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer ); 3434 template< typename IteratorType > 3435 cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator ); 3436 template< typename IteratorType > 3437 cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator, cl::B… 3438 template< typename IteratorType > 3439 …y( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType e… 3867 template< typename IteratorType > 3869 IteratorType startIterator, in Buffer() [all …]
|
D | cl.hpp | 3155 template< typename IteratorType > 3156 cl_int copy( IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer ); 3157 template< typename IteratorType > 3158 cl_int copy( const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator ); 3159 template< typename IteratorType > 3160 cl_int copy( const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator, cl::B… 3161 template< typename IteratorType > 3162 …y( const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType e… 3230 template< typename IteratorType > 3232 IteratorType startIterator, in Buffer() [all …]
|
/external/libchrome/mojo/public/cpp/bindings/lib/ |
D | array_serialization.h | 36 using IteratorType = decltype( 46 decltype(Traits::GetValue(std::declval<IteratorType&>())); 61 IteratorType iter_;
|
/external/llvm-project/mlir/include/mlir/Dialect/Linalg/EDSC/ |
D | Builders.h | 50 ArrayRef<IteratorType> iteratorTypes, ArrayRef<StructuredIndexed> inputs,
|
/external/llvm-project/mlir/include/mlir/IR/ |
D | OpImplementation.h | 50 template <typename IteratorType> 51 void printOperands(IteratorType it, IteratorType end) { in printOperands()
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktTestPackage.cpp | 128 template <typename InfoType, typename IteratorType> 130 IteratorType iter, in buildProgram()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | dot_op_emitter.cc | 307 llvm::SmallVector<mlir::IteratorType, 4> iteratorTypes( in EmitLinalgMatmul() 308 parallel_exprs.size(), mlir::IteratorType::Parallel); in EmitLinalgMatmul() 309 iteratorTypes.push_back(mlir::IteratorType::Reduction); in EmitLinalgMatmul()
|
/external/clang/utils/TableGen/ |
D | ClangAttrEmitter.cpp | 603 std::string IteratorType = getLowerName().str() + "_iterator"; in writeAccessors() local 607 OS << " typedef " << Type << "* " << IteratorType << ";\n"; in writeAccessors() 608 OS << " " << IteratorType << " " << BeginFn << " const {" in writeAccessors() 610 OS << " " << IteratorType << " " << EndFn << " const {" in writeAccessors() 614 OS << " llvm::iterator_range<" << IteratorType << "> " << RangeName in writeAccessors()
|
/external/llvm-project/clang/utils/TableGen/ |
D | ClangAttrEmitter.cpp | 674 std::string IteratorType = getLowerName().str() + "_iterator"; in writeAccessors() local 678 OS << " typedef " << Type << "* " << IteratorType << ";\n"; in writeAccessors() 679 OS << " " << IteratorType << " " << BeginFn << " const {" in writeAccessors() 681 OS << " " << IteratorType << " " << EndFn << " const {" in writeAccessors() 685 OS << " llvm::iterator_range<" << IteratorType << "> " << RangeName in writeAccessors()
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseOpenMP.cpp | 3273 ParsedType IteratorType; in ParseOpenMPIteratorsExpr() local 3281 IteratorType = TR.get(); in ParseOpenMPIteratorsExpr() 3347 D.Type = IteratorType; in ParseOpenMPIteratorsExpr()
|