Home
last modified time | relevance | path

Searched refs:vector_type (Results 1 – 18 of 18) sorted by relevance

/llvm-project/mlir/utils/tree-sitter-mlir/test/corpus/
H A Dtype.txt77 (vector_type
83 (vector_type
90 (vector_type
104 (vector_type
113 (vector_type
135 (vector_type
140 (vector_type
146 (vector_type
159 (vector_type
167 (vector_type
[all …]
H A Dop.txt2464 (vector_type
2486 (vector_type
2497 (vector_type
2502 (vector_type
2511 (vector_type
2814 (vector_type
2822 (vector_type
2830 (vector_type
2903 (vector_type
2914 (vector_type
[all …]
/llvm-project/mlir/test/python/dialects/
H A Dvector.py39 vector_type = VectorType.get([2, 3], F32Type.get())
45 mask_type = VectorType.get(vector_type.shape, IntegerType.get_signless(1))
46 identity_map = AffineMap.get_identity(vector_type.rank)
54 vector_type,
63 vector_type, A, [zero, zero], identity_map_attr, padding, [False, False]
81 vector_type = VectorType.get([16], f32)
83 @func.FuncOp.from_py_func(vector_type)
/llvm-project/lldb/test/API/commands/expression/import-std-module/non-module-type-separation/
H A DTestNonModuleTypeSeparation.py36 vector_type = "std::vector<int>"
40 vector_type = "std::vector<int, std::allocator<int> >"
45 self.expect_expr("a", result_type=vector_type, result_children=children)
55 type=vector_type,
87 self.expect_expr("a", result_type=vector_type, result_children=children)
99 type=vector_type,
/llvm-project/llvm/include/llvm/ADT/
H A DSetVector.h68 using vector_type = Vector; variable
69 using iterator = typename vector_type::const_iterator;
70 using const_iterator = typename vector_type::const_iterator;
71 using reverse_iterator = typename vector_type::const_reverse_iterator;
72 using const_reverse_iterator = typename vector_type::const_reverse_iterator;
73 using size_type = typename vector_type::size_type;
191 typename vector_type::iterator I = find(vector_, X); in remove()
200 typename vector_type::iterator I = find(vector_, X); in remove()
238 typename vector_type::iterator I = [this, P] { in remove_if()
364 vector_type vector_; ///< The vector.
/llvm-project/lldb/test/API/commands/expression/import-std-module/vector-of-vectors/
H A DTestVectorOfVectorsFromStdModule.py23 vector_type = "std::vector<int>"
26 vector_type = "std::vector<int>"
41 type=vector_type,
49 type=vector_type,
/llvm-project/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/
H A DTestDbgInfoContentVectorFromStdModule.py29 vector_type = "std::vector<Foo>"
31 vector_type = "std::vector<Foo, std::allocator<Foo> >"
46 result_type=vector_type,
/llvm-project/lldb/test/API/commands/expression/import-std-module/vector-bool/
H A DTestVectorBoolFromStdModule.py21 vector_type = "std::vector<bool>"
28 result_type=vector_type,
/llvm-project/lldb/test/API/commands/expression/import-std-module/vector/
H A DTestVectorFromStdModule.py23 vector_type = "std::vector<int>"
37 result_type=vector_type,
/llvm-project/mlir/utils/tree-sitter-mlir/
H A Dgrammar.js223 $.none_type, $.tensor_type, $.vector_type, $.tuple_type),
241 $.none_type, $.memref_type, $.vector_type, $.tensor_type),
267 vector_type : $ =>
/llvm-project/mlir/test/Target/Cpp/
H A Dinvalid.mlir43 func.func @vector_type(%arg0 : vector<100xf32>) {
/llvm-project/mlir/test/python/ir/
H A Dbuiltin_types.py717 vector_type = Type.parse("vector<2x3xf32>")
719 print(ShapedType(vector_type).typeid == vector_type.typeid)
/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2913 const clang::VectorType *vector_type = in IsVectorType()
2915 if (vector_type) { in IsVectorType()
2917 *size = vector_type->getNumElements(); in IsVectorType()
2919 *element_type = GetType(vector_type->getElementType()); in IsVectorType()
4022 const clang::VectorType *vector_type = llvm::dyn_cast<clang::VectorType>( in GetMinimumLanguage()
4024 if (vector_type) { in GetMinimumLanguage()
4025 if (vector_type->isIntegerType()) in GetMinimumLanguage()
4027 else if (vector_type->isFloatingType()) in GetMinimumLanguage()
2895 const clang::VectorType *vector_type = IsVectorType() local
4003 const clang::VectorType *vector_type = llvm::dyn_cast<clang::VectorType>( GetTypeInfo() local
/llvm-project/llvm/bindings/ocaml/llvm/
H A Dllvm.mli738 (** [vector_type ty n] returns the array type containing [n] elements of the
740 val vector_type : lltype -> int -> lltype
1059 [vector_type (type_of elts.(0)) (Array.length elts)] and containing the
734 val vector_type : lltype -> int -> lltype global() val
H A Dllvm.ml518 external vector_type : lltype -> int -> lltype = "llvm_vector_type"
/llvm-project/llvm/test/Bindings/OCaml/
H A Dcore.ml216 insist ((vector_type i16_type 8) = (type_of c));
/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp1831 NullifyingVector<decltype(TmpQ)::vector_type> Queue(TmpQ.takeVector()); in select()
/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5425 if (VectorType* vector_type = in parseFunctionBody()
5428 if (vector_type->getElementType() != Type::getInt1Ty(Context)) in parseFunctionBody()
5336 if (VectorType* vector_type = parseFunctionBody() local