Home
last modified time | relevance | path

Searched refs:IteratorType (Results 1 – 25 of 25) sorted by relevance

/external/tensorflow/tensorflow/core/example/
Dfeature_util.h281 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/
Diterator.h113 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/
Diterator.h117 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/
Diterator.h117 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/
DBuilders.cpp25 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/
DBuilders.cpp23 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/
Dstructures.h148 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/
DStructuredOpsUtils.h124 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/
Dmdns_records.h36 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/
Dshape_tree.h71 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/
Dreflection.h70 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;
Dmap_test.cc460 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/
DCoreIterators.h36 …: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/
DBuilders.h38 ArrayRef<IteratorType> iteratorTypes);
/external/eigen/test/
Dsparse_basic.cpp591 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/
Dcl2.hpp3432 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 …]
Dcl.hpp3155 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/
Darray_serialization.h36 using IteratorType = decltype(
46 decltype(Traits::GetValue(std::declval<IteratorType&>()));
61 IteratorType iter_;
/external/llvm-project/mlir/include/mlir/Dialect/Linalg/EDSC/
DBuilders.h50 ArrayRef<IteratorType> iteratorTypes, ArrayRef<StructuredIndexed> inputs,
/external/llvm-project/mlir/include/mlir/IR/
DOpImplementation.h50 template <typename IteratorType>
51 void printOperands(IteratorType it, IteratorType end) { in printOperands()
/external/deqp/external/vulkancts/modules/vulkan/
DvktTestPackage.cpp128 template <typename InfoType, typename IteratorType>
130 IteratorType iter, in buildProgram()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Ddot_op_emitter.cc307 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/
DClangAttrEmitter.cpp603 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/
DClangAttrEmitter.cpp674 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/
DParseOpenMP.cpp3273 ParsedType IteratorType; in ParseOpenMPIteratorsExpr() local
3281 IteratorType = TR.get(); in ParseOpenMPIteratorsExpr()
3347 D.Type = IteratorType; in ParseOpenMPIteratorsExpr()