Home
last modified time | relevance | path

Searched refs:row_2 (Results 1 – 3 of 3) 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))