Searched refs:left_low (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | highbd_intrapred_neon.c | 782 const uint16x4_t left_low = vget_low_u16(left_u16); in vpx_highbd_h_predictor_8x8_neon() local 788 row = vdupq_lane_u16(left_low, 0); in vpx_highbd_h_predictor_8x8_neon() 791 row = vdupq_lane_u16(left_low, 1); in vpx_highbd_h_predictor_8x8_neon() 794 row = vdupq_lane_u16(left_low, 2); in vpx_highbd_h_predictor_8x8_neon() 797 row = vdupq_lane_u16(left_low, 3); in vpx_highbd_h_predictor_8x8_neon() 831 const uint16x4_t left_low = vget_low_u16(left_u16q); in vpx_highbd_h_predictor_16x16_neon() local 835 row = vdupq_lane_u16(left_low, 0); in vpx_highbd_h_predictor_16x16_neon() 837 row = vdupq_lane_u16(left_low, 1); in vpx_highbd_h_predictor_16x16_neon() 839 row = vdupq_lane_u16(left_low, 2); in vpx_highbd_h_predictor_16x16_neon() 841 row = vdupq_lane_u16(left_low, 3); in vpx_highbd_h_predictor_16x16_neon() [all …]
|
D | intrapred_neon.c | 967 const int16x4_t left_low = vget_low_s16(left_s16q); in vpx_tm_predictor_16x16_neon() local 970 left_dup = vdupq_lane_s16(left_low, 0); in vpx_tm_predictor_16x16_neon() 972 left_dup = vdupq_lane_s16(left_low, 1); in vpx_tm_predictor_16x16_neon() 974 left_dup = vdupq_lane_s16(left_low, 2); in vpx_tm_predictor_16x16_neon() 976 left_dup = vdupq_lane_s16(left_low, 3); in vpx_tm_predictor_16x16_neon()
|
/external/v8/src/mips/ |
D | macro-assembler-mips.h | 572 void AddPair(Register dst_low, Register dst_high, Register left_low, 576 void SubPair(Register dst_low, Register dst_high, Register left_low, 580 void MulPair(Register dst_low, Register dst_high, Register left_low,
|
D | macro-assembler-mips.cc | 1439 Register left_low, Register left_high, in AddPair() argument 1444 Addu(scratch1, left_low, right_low); in AddPair() 1445 Sltu(scratch3, scratch1, left_low); in AddPair() 1452 Register left_low, Register left_high, in SubPair() argument 1457 Sltu(scratch3, left_low, right_low); in SubPair() 1458 Subu(scratch1, left_low, right_low); in SubPair() 1465 Register left_low, Register left_high, in MulPair() argument 1470 Mulu(scratch2, scratch1, left_low, right_low); in MulPair() 1471 Mul(scratch3, left_low, right_high); in MulPair()
|