Home
last modified time | relevance | path

Searched refs:Int16x8 (Results 1 – 4 of 4) sorted by relevance

/external/gemmlowp/internal/
Dsimd_wrappers_msa.h25 using Int16x8 = v8i16; variable
37 typename std::conditional<ScalarCount >= 8, Int16x8, std::int16_t>::type;
64 inline Int16x8 LoadInt16x8(const std::int16_t* src) {
68 inline Int16x8 LoadInt16x8(const Int16x8* src) {
69 return __builtin_msa_ld_h(const_cast<Int16x8*>(src), 0);
72 inline void StoreInt16x8(std::int16_t* dst, Int16x8 value) {
76 inline void StoreInt16x8(Int16x8* dst, Int16x8 value) {
Dsimd_wrappers_sse.h25 using Int16x8 = __m128i; variable
37 typename std::conditional<ScalarCount >= 8, Int16x8, std::int16_t>::type;
53 return _mm_loadu_si128(reinterpret_cast<const Int16x8*>(src));
60 inline void StoreInt16x8(std::int16_t* dst, Int16x8 value) {
Dsimd_wrappers_neon.h26 using Int16x8 = int16x8_t; variable
38 ScalarCount >= 8, Int16x8,
53 inline Int16x8 LoadInt16x8(const std::int16_t* src) { return vld1q_s16(src); }
63 inline void StoreInt16x8(std::int16_t* dst, Int16x8 value) {
/external/v8/src/compiler/
Dsimd-scalar-lowering.cc1283 COMPARISON_CASE(Int16x8, kI16x8Eq, Word32Equal, false) in LowerNode()
1284 COMPARISON_CASE(Int16x8, kI16x8LtS, Int32LessThan, false) in LowerNode()
1285 COMPARISON_CASE(Int16x8, kI16x8LeS, Int32LessThanOrEqual, false) in LowerNode()
1286 COMPARISON_CASE(Int16x8, kI16x8GtS, Int32LessThan, true) in LowerNode()
1287 COMPARISON_CASE(Int16x8, kI16x8GeS, Int32LessThanOrEqual, true) in LowerNode()
1288 COMPARISON_CASE(Int16x8, kI16x8LtU, Uint32LessThan, false) in LowerNode()
1289 COMPARISON_CASE(Int16x8, kI16x8LeU, Uint32LessThanOrEqual, false) in LowerNode()
1290 COMPARISON_CASE(Int16x8, kI16x8GtU, Uint32LessThan, true) in LowerNode()
1291 COMPARISON_CASE(Int16x8, kI16x8GeU, Uint32LessThanOrEqual, true) in LowerNode()