Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/
H A DTestDbgInfoContentVectorFromStdModule.py24 vector_type = "std::vector<Foo>"
25 size_type = vector_type + "::size_type"
26 value_type = vector_type + "::value_type"
27 iterator = vector_type + "::iterator"
30 riterator = vector_type + "::reverse_iterator"
37 result_type=vector_type,
/llvm-project-15.0.7/mlir/test/python/dialects/
H A Dvector.py37 vector_type = VectorType.get([2, 3], F32Type.get())
40 mask_type = VectorType.get(vector_type.shape, IntegerType.get_signless(1))
41 identity_map = AffineMap.get_identity(vector_type.rank)
48 vector.TransferReadOp(vector_type, A, [zero, zero], identity_map_attr,
50 vector.TransferReadOp(vector_type, A, [zero, zero], identity_map_attr,
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DSetVector.h47 using vector_type = Vector; variable
48 using iterator = typename vector_type::const_iterator;
49 using const_iterator = typename vector_type::const_iterator;
50 using reverse_iterator = typename vector_type::const_reverse_iterator;
51 using const_reverse_iterator = typename vector_type::const_reverse_iterator;
52 using size_type = typename vector_type::size_type;
159 typename vector_type::iterator I = find(vector_, X); in remove()
200 typename vector_type::iterator I = in remove_if()
301 vector_type vector_; ///< The vector.
/llvm-project-15.0.7/lldb/test/API/commands/expression/import-std-module/vector/
H A DTestVectorFromStdModule.py23 vector_type = "std::vector<int>"
24 size_type = vector_type + "::size_type"
25 iterator = vector_type + "::iterator"
28 riterator = vector_type + "::reverse_iterator"
35 result_type=vector_type,
/llvm-project-15.0.7/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDagOperands.h84 using vector_type = SmallVector<GIMatchDagOperand, 3>;
87 using iterator = vector_type::iterator;
88 using const_iterator = vector_type::const_iterator;
91 vector_type Operands;
/llvm-project-15.0.7/lldb/test/API/commands/expression/import-std-module/vector-bool/
H A DTestVectorBoolFromStdModule.py21 vector_type = "std::vector<bool>"
22 size_type = vector_type + "::size_type"
27 result_type=vector_type,
/llvm-project-15.0.7/lldb/test/API/commands/expression/import-std-module/vector-of-vectors/
H A DTestVectorOfVectorsFromStdModule.py21 vector_type = "std::vector<int>"
22 vector_of_vector_type = "std::vector<" + vector_type + " >"
/llvm-project-15.0.7/mlir/test/Target/Cpp/
H A Dinvalid.mlir43 func.func @vector_type(%arg0 : vector<100xf32>) {
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2921 const clang::VectorType *vector_type = in IsVectorType() local
2923 if (vector_type) { in IsVectorType()
2925 *size = vector_type->getNumElements(); in IsVectorType()
2927 *element_type = GetType(vector_type->getElementType()); in IsVectorType()
3992 const clang::VectorType *vector_type = llvm::dyn_cast<clang::VectorType>( in GetTypeInfo() local
3994 if (vector_type) { in GetTypeInfo()
3995 if (vector_type->isIntegerType()) in GetTypeInfo()
3997 else if (vector_type->isFloatingType()) in GetTypeInfo()
/llvm-project-15.0.7/llvm/bindings/ocaml/llvm/
H A Dllvm.ml511 external vector_type : lltype -> int -> lltype = "llvm_vector_type"
H A Dllvm.mli729 (** [vector_type ty n] returns the array type containing [n] elements of the
731 val vector_type : lltype -> int -> lltype val
1039 [vector_type (type_of elts.(0)) (Array.length elts)] and containing the
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp1629 NullifyingVector<decltype(TmpQ)::vector_type> Queue(TmpQ.takeVector()); in select()
/llvm-project-15.0.7/llvm/test/Bindings/OCaml/
H A Dcore.ml192 insist ((vector_type i16_type 8) = (type_of c));
/llvm-project-15.0.7/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4954 if (VectorType* vector_type = in parseFunctionBody() local
4957 if (vector_type->getElementType() != Type::getInt1Ty(Context)) in parseFunctionBody()