Home
last modified time | relevance | path

Searched refs:mb_dqcoeff (Results 1 – 12 of 12) sorted by relevance

/external/libvpx/libvpx/vp8/common/arm/neon/
Diwalsh_neon.c15 void vp8_short_inv_walsh4x4_neon(int16_t *input, int16_t *mb_dqcoeff) { in vp8_short_inv_walsh4x4_neon() argument
66 vst1_lane_s16(mb_dqcoeff, vget_low_s16(q0s16), 0); in vp8_short_inv_walsh4x4_neon()
67 mb_dqcoeff += 16; in vp8_short_inv_walsh4x4_neon()
68 vst1_lane_s16(mb_dqcoeff, vget_high_s16(q0s16), 0); in vp8_short_inv_walsh4x4_neon()
69 mb_dqcoeff += 16; in vp8_short_inv_walsh4x4_neon()
70 vst1_lane_s16(mb_dqcoeff, vget_low_s16(q1s16), 0); in vp8_short_inv_walsh4x4_neon()
71 mb_dqcoeff += 16; in vp8_short_inv_walsh4x4_neon()
72 vst1_lane_s16(mb_dqcoeff, vget_high_s16(q1s16), 0); in vp8_short_inv_walsh4x4_neon()
73 mb_dqcoeff += 16; in vp8_short_inv_walsh4x4_neon()
75 vst1_lane_s16(mb_dqcoeff, vget_low_s16(q0s16), 1); in vp8_short_inv_walsh4x4_neon()
[all …]
/external/libvpx/libvpx/vp8/common/mips/msa/
Didct_msa.c137 void vp8_short_inv_walsh4x4_msa(int16_t *input, int16_t *mb_dqcoeff) { in vp8_short_inv_walsh4x4_msa() argument
160 mb_dqcoeff[0] = __msa_copy_s_h(out0, 0); in vp8_short_inv_walsh4x4_msa()
161 mb_dqcoeff[16] = __msa_copy_s_h(out0, 4); in vp8_short_inv_walsh4x4_msa()
162 mb_dqcoeff[32] = __msa_copy_s_h(out1, 0); in vp8_short_inv_walsh4x4_msa()
163 mb_dqcoeff[48] = __msa_copy_s_h(out1, 4); in vp8_short_inv_walsh4x4_msa()
164 mb_dqcoeff[64] = __msa_copy_s_h(out0, 1); in vp8_short_inv_walsh4x4_msa()
165 mb_dqcoeff[80] = __msa_copy_s_h(out0, 5); in vp8_short_inv_walsh4x4_msa()
166 mb_dqcoeff[96] = __msa_copy_s_h(out1, 1); in vp8_short_inv_walsh4x4_msa()
167 mb_dqcoeff[112] = __msa_copy_s_h(out1, 5); in vp8_short_inv_walsh4x4_msa()
168 mb_dqcoeff[128] = __msa_copy_s_h(out0, 2); in vp8_short_inv_walsh4x4_msa()
[all …]
/external/libvpx/libvpx/vp8/common/
Didctllm.c127 void vp8_short_inv_walsh4x4_c(short *input, short *mb_dqcoeff) { in vp8_short_inv_walsh4x4_c() argument
173 mb_dqcoeff[i * 16] = output[i]; in vp8_short_inv_walsh4x4_c()
177 void vp8_short_inv_walsh4x4_1_c(short *input, short *mb_dqcoeff) { in vp8_short_inv_walsh4x4_1_c() argument
183 mb_dqcoeff[i * 16] = a1; in vp8_short_inv_walsh4x4_1_c()
Drtcd_defs.pl102 add_proto qw/void vp8_short_inv_walsh4x4_1/, "short *input, short *mb_dqcoeff";
106 add_proto qw/void vp8_short_inv_walsh4x4/, "short *input, short *mb_dqcoeff";
/external/libvpx/libvpx/vp8/common/mips/dspr2/
Didctllm_dspr2.c264 void vp8_short_inv_walsh4x4_dspr2(short *input, short *mb_dqcoeff) { in vp8_short_inv_walsh4x4_dspr2() argument
315 mb_dqcoeff[i * 16] = output[i]; in vp8_short_inv_walsh4x4_dspr2()
319 void vp8_short_inv_walsh4x4_1_dspr2(short *input, short *mb_dqcoeff) { in vp8_short_inv_walsh4x4_1_dspr2() argument
343 : [a1] "r"(a1), [mb_dqcoeff] "r"(mb_dqcoeff)); in vp8_short_inv_walsh4x4_1_dspr2()
/external/libvpx/libvpx/vp8/common/mips/mmi/
Didctllm_mmi.c254 void vp8_short_inv_walsh4x4_mmi(int16_t *input, int16_t *mb_dqcoeff) { in vp8_short_inv_walsh4x4_mmi() argument
326 mb_dqcoeff[i * 16] = output[i]; in vp8_short_inv_walsh4x4_mmi()
/external/libvpx/config/arm-neon/
Dvp8_rtcd.h158 void vp8_short_inv_walsh4x4_c(short *input, short *mb_dqcoeff);
159 void vp8_short_inv_walsh4x4_neon(short *input, short *mb_dqcoeff);
162 void vp8_short_inv_walsh4x4_1_c(short *input, short *mb_dqcoeff);
/external/libvpx/config/arm64/
Dvp8_rtcd.h158 void vp8_short_inv_walsh4x4_c(short *input, short *mb_dqcoeff);
159 void vp8_short_inv_walsh4x4_neon(short *input, short *mb_dqcoeff);
162 void vp8_short_inv_walsh4x4_1_c(short *input, short *mb_dqcoeff);
/external/libvpx/config/generic/
Dvp8_rtcd.h132 void vp8_short_inv_walsh4x4_c(short *input, short *mb_dqcoeff);
135 void vp8_short_inv_walsh4x4_1_c(short *input, short *mb_dqcoeff);
/external/libvpx/config/x86_64/
Dvp8_rtcd.h190 void vp8_short_inv_walsh4x4_c(short *input, short *mb_dqcoeff);
191 void vp8_short_inv_walsh4x4_sse2(short *input, short *mb_dqcoeff);
194 void vp8_short_inv_walsh4x4_1_c(short *input, short *mb_dqcoeff);
/external/libvpx/config/x86/
Dvp8_rtcd.h190 void vp8_short_inv_walsh4x4_c(short *input, short *mb_dqcoeff);
191 void vp8_short_inv_walsh4x4_sse2(short *input, short *mb_dqcoeff);
194 void vp8_short_inv_walsh4x4_1_c(short *input, short *mb_dqcoeff);
/external/libvpx/libvpx/vp8/common/x86/
Diwalsh_sse2.asm16 ;void vp8_short_inv_walsh4x4_sse2(short *input, short *mb_dqcoeff)