Home
last modified time | relevance | path

Searched refs:row_2 (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/arm/
Dintrapred_neon.c454 const uint8x16_t row_1, const uint8x16_t row_2, const uint8x16_t row_3, in d135_store_16x8() argument
461 vst1q_u8(*dst, row_2); in d135_store_16x8()
515 const uint8x16_t row_2) { in d135_store_32x2() argument
519 vst1q_u8(dst2, row_2); in d135_store_32x2()
558 const uint8x16_t row_2 = vrhaddq_u8(avg_2, AL0123456789abcdef); in vpx_d135_predictor_32x32_neon() local
564 const uint8x16_t r_1 = vextq_u8(row_1, row_2, 15); in vpx_d135_predictor_32x32_neon()
565 const uint8x16_t r_2 = vextq_u8(row_2, row_3, 15); in vpx_d135_predictor_32x32_neon()
571 const uint8x16_t r_1 = vextq_u8(row_1, row_2, 14); in vpx_d135_predictor_32x32_neon()
572 const uint8x16_t r_2 = vextq_u8(row_2, row_3, 14); in vpx_d135_predictor_32x32_neon()
578 const uint8x16_t r_1 = vextq_u8(row_1, row_2, 13); in vpx_d135_predictor_32x32_neon()
[all …]
Dhighbd_intrapred_neon.c415 uint16x8_t row_2 = vrhaddq_u16(avg_2, A1_2); in vpx_highbd_d45_predictor_32x32_neon() local
425 vst1q_u16(dst, row_2); in vpx_highbd_d45_predictor_32x32_neon()
432 row_1 = vextq_u16(row_1, row_2, 1); in vpx_highbd_d45_predictor_32x32_neon()
433 row_2 = vextq_u16(row_2, row_3, 1); in vpx_highbd_d45_predictor_32x32_neon()
439 vst1q_u16(dst, row_2); in vpx_highbd_d45_predictor_32x32_neon()
558 const uint16x8_t row_2 = vrhaddq_u16(avg_2, A01234567); in vpx_highbd_d135_predictor_16x16_neon() local
566 const uint16x8_t r0_0 = vextq_u16(row_1, row_2, 7); in vpx_highbd_d135_predictor_16x16_neon()
567 const uint16x8_t r0_1 = vextq_u16(row_2, row_3, 7); in vpx_highbd_d135_predictor_16x16_neon()
568 const uint16x8_t r1_0 = vextq_u16(row_1, row_2, 6); in vpx_highbd_d135_predictor_16x16_neon()
569 const uint16x8_t r1_1 = vextq_u16(row_2, row_3, 6); in vpx_highbd_d135_predictor_16x16_neon()
[all …]
/external/python/cpython2/Lib/sqlite3/test/
Dfactory.py160 row_2 = self.con.execute("select 1 as a, 2 as b").fetchone()
164 self.assertEqual(row_1, row_2)
165 self.assertTrue(row_2 != row_3)
168 self.assertFalse(row_1 != row_2)
169 self.assertFalse(row_2 == row_3)
171 self.assertEqual(row_1, row_2)
172 self.assertEqual(hash(row_1), hash(row_2))
/external/python/cpython3/Lib/sqlite3/test/
Dfactory.py170 row_2 = self.con.execute("select 1 as a, 2 as b").fetchone()
174 self.assertEqual(row_1, row_2)
175 self.assertTrue(row_2 != row_3)
178 self.assertFalse(row_1 != row_2)
179 self.assertFalse(row_2 == row_3)
181 self.assertEqual(row_1, row_2)
182 self.assertEqual(hash(row_1), hash(row_2))
/external/libvpx/libvpx/vpx_dsp/x86/
Dhighbd_intrapred_intrin_ssse3.c601 __m128i row_2 = avg3_2; in vpx_highbd_d153_predictor_32x32_ssse3() local
619 row_3 = _mm_alignr_epi8(row_3, row_2, 12); in vpx_highbd_d153_predictor_32x32_ssse3()
620 row_2 = _mm_alignr_epi8(row_2, row_1, 12); in vpx_highbd_d153_predictor_32x32_ssse3()
625 _mm_store_si128((__m128i *)(dst + 16), row_2); in vpx_highbd_d153_predictor_32x32_ssse3()
628 row_3 = _mm_alignr_epi8(row_3, row_2, 12); in vpx_highbd_d153_predictor_32x32_ssse3()
629 row_2 = _mm_alignr_epi8(row_2, row_1, 12); in vpx_highbd_d153_predictor_32x32_ssse3()
634 _mm_store_si128((__m128i *)(dst + 16), row_2); in vpx_highbd_d153_predictor_32x32_ssse3()
637 row_3 = _mm_alignr_epi8(row_3, row_2, 12); in vpx_highbd_d153_predictor_32x32_ssse3()
638 row_2 = _mm_alignr_epi8(row_2, row_1, 12); in vpx_highbd_d153_predictor_32x32_ssse3()
643 _mm_store_si128((__m128i *)(dst + 16), row_2); in vpx_highbd_d153_predictor_32x32_ssse3()
[all …]
/external/libaom/libaom/av1/common/x86/
Dcfl_ssse3.c286 __m128i row_2 = _mm_loadu_si128(((__m128i *)input) + 2); in cfl_luma_subsampling_444_hbd_ssse3() local
287 row_2 = _mm_slli_epi16(row_2, 3); in cfl_luma_subsampling_444_hbd_ssse3()
288 _mm_storeu_si128(((__m128i *)pred_buf_q3) + 2, row_2); in cfl_luma_subsampling_444_hbd_ssse3()