Home
last modified time | relevance | path

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

1234567

/external/swiftshader/third_party/subzero/crosstest/
Dvectors.h50 template <typename T> struct Vectors;
61 template <> struct Vectors<LABEL> { \
68 const size_t Vectors<LABEL>::NumElements = NUM_ELEMENTS; \
69 const char *const Vectors<LABEL>::TypeName = #LABEL;
85 std::string vectAsString(const typename Vectors<T>::Ty Vect) { in vectAsString()
87 for (size_t i = 0; i < Vectors<T>::NumElements; ++i) { in vectAsString()
90 OS << (typename Vectors<T>::CastTy)Vect[i]; in vectAsString()
Dtest_icmp_main.cpp189 typedef typename Vectors<TypeUnsignedLabel>::Ty TypeUnsigned; in testsVecInt()
190 typedef typename Vectors<TypeSignedLabel>::Ty TypeSigned; in testsVecInt()
191 typedef typename Vectors<TypeUnsignedLabel>::ElementTy ElementTypeUnsigned; in testsVecInt()
192 typedef typename Vectors<TypeSignedLabel>::ElementTy ElementTypeSigned; in testsVecInt()
212 const static size_t NumElementsInType = Vectors<TypeUnsigned>::NumElements; in testsVecInt()
231 << Vectors<TypeUnsignedLabel>::TypeName << "(" in testsVecInt()
245 incrementI1Vector(typename Vectors<T>::Ty &Vect) { in incrementI1Vector()
247 const static size_t NumElements = Vectors<T>::NumElements; in incrementI1Vector()
260 typedef typename Vectors<T>::Ty Ty; in testsVecI1()
271 const static size_t NumElements = Vectors<T>::NumElements; in testsVecI1()
[all …]
Dtest_select_main.cpp34 typedef typename Vectors<T>::Ty Ty; in testSelect()
35 typedef typename Vectors<TI1>::Ty TyI1; in testSelect()
42 static const size_t NumElements = Vectors<T>::NumElements; in testSelect()
59 std::cout << "select<" << Vectors<T>::TypeName << ">(Cond="; in testSelect()
107 typedef typename Vectors<T>::Ty Ty; in testSelectI1()
108 static const size_t NumElements = Vectors<T>::NumElements; in testSelectI1()
125 std::cout << "select<" << Vectors<T>::TypeName << ">(Cond="; in testSelectI1()
Dtest_arith_main.cpp171 typedef typename Vectors<TypeUnsignedLabel>::Ty TypeUnsigned; in testsVecInt()
172 typedef typename Vectors<TypeSignedLabel>::Ty TypeSigned; in testsVecInt()
173 typedef typename Vectors<TypeUnsignedLabel>::ElementTy ElementTypeUnsigned; in testsVecInt()
174 typedef typename Vectors<TypeSignedLabel>::ElementTy ElementTypeSigned; in testsVecInt()
203 const static size_t NumElementsInType = Vectors<TypeUnsigned>::NumElements; in testsVecInt()
Dtest_vector_ops.cpp663 static typename std::enable_if<Vectors<Ty>::NumElements == 4, Ty>::type
679 static typename std::enable_if<Vectors<Ty>::NumElements == 8, Ty>::type
698 static typename std::enable_if<Vectors<Ty>::NumElements == 16, Ty>::type
/external/llvm-project/llvm/lib/Transforms/Scalar/
DLowerMatrixIntrinsics.cpp215 SmallVector<Value *, 16> Vectors; member in __anone124444e0111::LowerMatrixIntrinsics::MatrixTy
223 : Vectors(), in MatrixTy()
225 MatrixTy(ArrayRef<Value *> Vectors) in MatrixTy() argument
226 : Vectors(Vectors.begin(), Vectors.end()), in MatrixTy()
237 Value *getVector(unsigned i) const { return Vectors[i]; } in getVector()
240 return Vectors[i]; in getColumn()
244 return Vectors[i]; in getRow()
247 void setVector(unsigned i, Value *V) { Vectors[i] = V; } in setVector()
259 return Vectors.size(); in getNumColumns()
261 assert(Vectors.size() > 0 && "Cannot call getNumRows without columns"); in getNumColumns()
[all …]
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dsve2-intrinsics-fp-widening-mul-acc.ll8 ; FMLALB (Vectors)
37 ; FMLALT (Vectors)
66 ; FMLSLB (Vectors)
95 ; FMLSLT (Vectors)
Darm64-subvector-extend.ll8 ; Vectors of i16.
48 ; Vectors of i32.
108 ; Vectors of i64.
/external/llvm/test/CodeGen/AArch64/
Darm64-subvector-extend.ll7 ; Vectors of i16.
44 ; Vectors of i32.
102 ; Vectors of i64.
/external/python/cryptography/vectors/cryptography_vectors/ciphers/SEED/
Drfc-4196.txt1 # Vectors from RFC 6229. Reformatted to work with the NIST loader
Drfc-4269.txt1 # Vectors from RFC 4269. Reformatted to work with the NIST loader
/external/python/cryptography/vectors/cryptography_vectors/CMAC/
Dnist-800-38b-aes128.txt1 # AES-128-CMAC Test Vectors
Dnist-800-38b-aes256.txt1 # AES-256-CMAC Test Vectors
Dnist-800-38b-aes192.txt1 # AES-192-CMAC Test Vectors
Dnist-800-38b-3des.txt1 # 3DES-CMAC Test Vectors
/external/python/cryptography/vectors/cryptography_vectors/asymmetric/EC/
Dcompressed_points.txt1 # Vectors generated by OpenSSL
/external/python/cryptography/vectors/cryptography_vectors/ciphers/ChaCha20Poly1305/
Dopenssl.txt1 # Vectors from OpenSSL's test/evpciph.txt
/external/rust/crates/quiche/deps/boringssl/src/crypto/siphash/
Dsiphash_test.cc44 TEST(SipHash, Vectors) { in TEST() argument
/external/python/cryptography/vectors/cryptography_vectors/twofactor/
Drfc-4226.txt1 # HOTP Test Vectors
Drfc-6238.txt1 # TOTP Test Vectors
/external/boringssl/src/crypto/siphash/
Dsiphash_test.cc44 TEST(SipHash, Vectors) { in TEST() argument
/external/clang/docs/
DControlFlowIntegrityDesign.rst49 .. csv-table:: Bit Vectors for A, B, C
112 Stripping Leading/Trailing Zeros in Bit Vectors
121 .. csv-table:: Bit Vectors for A, B, C
128 Short Inline Bit Vectors
196 Vectors" above). The `GlobalLayoutBuilder`_ class is responsible for laying
270 Eliminating Bit Vector Checks for All-Ones Bit Vectors
367 for All-Ones Bit Vectors`_ optimizations thus simplifying the check at each
/external/rust/crates/ring/src/ec/suite_b/ecdsa/
Decdsa_sign_asn1_tests.txt1 # Tests from NIST CAVP 186-4 ECDSA2VS Test Vectors, Signature Generation Test
/external/pigweed/pw_containers/
Ddocs.rst11 fixed-size buffer. Vectors must be declared with an explicit maximum size
17 size in a variable. This allows Vectors to be used without having to know
/external/llvm-project/llvm/test/CodeGen/Hexagon/
Dvec-vararg-align.ll8 @.str = private unnamed_addr constant [32 x i8] c"\0AMixed Vectors, Pairs, int flt\0A\00", align 1

1234567