Home
last modified time | relevance | path

Searched refs:SimdType (Results 1 – 13 of 13) sorted by relevance

/external/llvm-project/libcxx/test/std/experimental/simd/simd.cons/
Dload.pass.cpp53 template <typename SimdType>
57 SimdType a(buffer, ex::element_aligned_tag()); in test_load_ctor()
64 SimdType a(buffer, ex::vector_aligned_tag()); in test_load_ctor()
71 SimdType a(buffer, ex::overaligned_tag<32>()); in test_load_ctor()
79 SimdType a(buffer, ex::element_aligned); in test_load_ctor()
86 SimdType a(buffer, ex::vector_aligned); in test_load_ctor()
93 SimdType a(buffer, ex::overaligned<32>); in test_load_ctor()
101 template <typename SimdType>
104 SimdType a(buffer, ex::element_aligned_tag()); in test_converting_load_ctor()
Dgenerator.pass.cpp67 template <typename SimdType>
70 SimdType a([](int i) { return i; }); in test_generator()
77 SimdType a([](int i) { return 2 * i - 1; }); in test_generator()
Dbroadcast.pass.cpp73 template <typename SimdType>
75 SimdType a(3); in test_broadcast()
/external/libcxx/test/std/experimental/simd/simd.cons/
Dload.pass.cpp53 template <typename SimdType>
57 SimdType a(buffer, ex::element_aligned_tag()); in test_load_ctor()
64 SimdType a(buffer, ex::vector_aligned_tag()); in test_load_ctor()
71 SimdType a(buffer, ex::overaligned_tag<32>()); in test_load_ctor()
79 SimdType a(buffer, ex::element_aligned); in test_load_ctor()
86 SimdType a(buffer, ex::vector_aligned); in test_load_ctor()
93 SimdType a(buffer, ex::overaligned<32>); in test_load_ctor()
101 template <typename SimdType>
104 SimdType a(buffer, ex::element_aligned_tag()); in test_converting_load_ctor()
Dgenerator.pass.cpp68 template <typename SimdType>
71 SimdType a([](int i) { return i; }); in test_generator()
78 SimdType a([](int i) { return 2 * i - 1; }); in test_generator()
Dbroadcast.pass.cpp74 template <typename SimdType>
76 SimdType a(3); in test_broadcast()
/external/libcxx/test/std/experimental/simd/simd.mem/
Dload.pass.cpp50 template <typename SimdType>
54 SimdType a; in test_load()
62 SimdType a; in test_load()
70 SimdType a; in test_load()
79 SimdType a; in test_load()
87 SimdType a; in test_load()
95 SimdType a; in test_load()
104 template <typename SimdType>
107 SimdType a; in test_converting_load()
Dstore.pass.cpp24 template <typename SimdType>
26 SimdType a([](int i) { return 4 - i; }); in test_store()
78 template <typename SimdType>
81 SimdType a([](int i) { return 1 << i; }); in test_converting_store()
/external/llvm-project/libcxx/test/std/experimental/simd/simd.mem/
Dload.pass.cpp50 template <typename SimdType>
54 SimdType a; in test_load()
62 SimdType a; in test_load()
70 SimdType a; in test_load()
79 SimdType a; in test_load()
87 SimdType a; in test_load()
95 SimdType a; in test_load()
104 template <typename SimdType>
107 SimdType a; in test_converting_load()
Dstore.pass.cpp24 template <typename SimdType>
26 SimdType a([](int i) { return 4 - i; }); in test_store()
78 template <typename SimdType>
81 SimdType a([](int i) { return 1 << i; }); in test_converting_store()
/external/llvm-project/libcxx/test/std/experimental/simd/simd.access/
Ddefault.pass.cpp25 template <typename SimdType>
28 SimdType a(42), b(4); in test_access()
185 const SimdType a(42); in test_access()
186 const SimdType b(4); in test_access()
/external/libcxx/test/std/experimental/simd/simd.access/
Ddefault.pass.cpp24 template <typename SimdType>
27 SimdType a(42), b(4); in test_access()
184 const SimdType a(42); in test_access()
185 const SimdType b(4); in test_access()
/external/gemmlowp/test/
Dtest_fixedpoint.cc123 using SimdType = tSimdType; typedef in gemmlowp::__anon3853b5040111::TestFixedPoint
124 using SimdTypeTraits = FixedPointRawTypeTraits<SimdType>;
358 Store<SimdType>(actual_simd, unary_op.Op(Load<SimdType>(input))); in TestUnaryOp()