Searched refs:row_3 (Results 1 – 7 of 7) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | intrapred_neon.c | 454 const uint8x16_t row_1, const uint8x16_t row_2, const uint8x16_t row_3, in d135_store_16x8() argument 463 vst1q_u8(*dst, row_3); in d135_store_16x8() 560 const uint8x16_t row_3 = vrhaddq_u8(avg_3, AR0123456789abcdef); in vpx_d135_predictor_32x32_neon() local 565 const uint8x16_t r_2 = vextq_u8(row_2, row_3, 15); 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() 579 const uint8x16_t r_2 = vextq_u8(row_2, row_3, 13); in vpx_d135_predictor_32x32_neon() 586 const uint8x16_t r_2 = vextq_u8(row_2, row_3, 12); in vpx_d135_predictor_32x32_neon() 593 const uint8x16_t r_2 = vextq_u8(row_2, row_3, 11); in vpx_d135_predictor_32x32_neon() 600 const uint8x16_t r_2 = vextq_u8(row_2, row_3, 10); in vpx_d135_predictor_32x32_neon() 607 const uint8x16_t r_2 = vextq_u8(row_2, row_3, 9); in vpx_d135_predictor_32x32_neon() [all …]
|
D | highbd_intrapred_neon.c | 416 uint16x8_t row_3 = vrhaddq_u16(avg_3, A1_3); in vpx_highbd_d45_predictor_32x32_neon() local 427 vst1q_u16(dst, row_3); in vpx_highbd_d45_predictor_32x32_neon() 433 row_2 = vextq_u16(row_2, row_3, 1); in vpx_highbd_d45_predictor_32x32_neon() 434 row_3 = vextq_u16(row_3, above_right, 1); in vpx_highbd_d45_predictor_32x32_neon() 441 vst1q_u16(dst, row_3); in vpx_highbd_d45_predictor_32x32_neon() 564 const uint16x8_t row_3 = vrhaddq_u16(avg_3, A89abcdef); in vpx_highbd_d135_predictor_16x16_neon() local 567 const uint16x8_t r0_1 = vextq_u16(row_2, row_3, 7); 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() 571 const uint16x8_t r2_1 = vextq_u16(row_2, row_3, 5); in vpx_highbd_d135_predictor_16x16_neon() 573 const uint16x8_t r3_1 = vextq_u16(row_2, row_3, 4); in vpx_highbd_d135_predictor_16x16_neon() [all …]
|
/external/python/cpython2/Lib/sqlite3/test/ |
D | factory.py | 161 row_3 = self.con.execute("select 1 as a, 3 as b").fetchone() 165 self.assertTrue(row_2 != row_3) 169 self.assertFalse(row_2 == row_3) 173 self.assertNotEqual(row_1, row_3) 174 self.assertNotEqual(hash(row_1), hash(row_3))
|
/external/python/cpython3/Lib/sqlite3/test/ |
D | factory.py | 171 row_3 = self.con.execute("select 1 as a, 3 as b").fetchone() 175 self.assertTrue(row_2 != row_3) 179 self.assertFalse(row_2 == row_3) 183 self.assertNotEqual(row_1, row_3) 184 self.assertNotEqual(hash(row_1), hash(row_3))
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_intrapred_intrin_ssse3.c | 602 __m128i row_3 = avg3_3; 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() 626 _mm_store_si128((__m128i *)(dst + 24), row_3); 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() 635 _mm_store_si128((__m128i *)(dst + 24), row_3); 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() 644 _mm_store_si128((__m128i *)(dst + 24), row_3); in vpx_highbd_d153_predictor_32x32_ssse3() 646 row_3 = _mm_alignr_epi8(row_3, row_2, 12); in vpx_highbd_d153_predictor_32x32_ssse3() 653 _mm_store_si128((__m128i *)(dst + 24), row_3); in vpx_highbd_d153_predictor_32x32_ssse3()
|
/external/libaom/libaom/av1/common/x86/ |
D | cfl_ssse3.c | 289 __m128i row_3 = _mm_loadu_si128(((__m128i *)input) + 3); in cfl_luma_subsampling_444_hbd_ssse3() local 290 row_3 = _mm_slli_epi16(row_3, 3); in cfl_luma_subsampling_444_hbd_ssse3() 291 _mm_storeu_si128(((__m128i *)pred_buf_q3) + 3, row_3); in cfl_luma_subsampling_444_hbd_ssse3()
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | README.md | 1438 Eigen::Tensor<int, 1> row_3 = a.chip(2, 0); 1447 cout << "row_3" << endl << row_3 << endl; 1449 row_3
|