Searched refs:x_filter (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/ |
D | vpx_convolve.c | 33 const int16_t *const x_filter = x_filters[x_q4 & SUBPEL_MASK]; in convolve_horiz() local 35 for (k = 0; k < SUBPEL_TAPS; ++k) sum += src_x[k] * x_filter[k]; in convolve_horiz() 55 const int16_t *const x_filter = x_filters[x_q4 & SUBPEL_MASK]; in convolve_avg_horiz() local 57 for (k = 0; k < SUBPEL_TAPS; ++k) sum += src_x[k] * x_filter[k]; in convolve_avg_horiz() 305 const int16_t *const x_filter = x_filters[x_q4 & SUBPEL_MASK]; in highbd_convolve_horiz() local 307 for (k = 0; k < SUBPEL_TAPS; ++k) sum += src_x[k] * x_filter[k]; in highbd_convolve_horiz() 327 const int16_t *const x_filter = x_filters[x_q4 & SUBPEL_MASK]; in highbd_convolve_avg_horiz() local 329 for (k = 0; k < SUBPEL_TAPS; ++k) sum += src_x[k] * x_filter[k]; in highbd_convolve_avg_horiz()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | vpx_subpixel_8t_intrin_ssse3.c | 242 const int16_t *const x_filter) { in filter_horiz_w8_ssse3() argument 251 temp = shuffle_filter_convolve8_8_ssse3(ss, x_filter); in filter_horiz_w8_ssse3() 288 const int16_t *const x_filter = x_filters[x_q4 & SUBPEL_MASK]; in scaledconvolve_horiz_w8() local 290 filter_horiz_w8_ssse3(src_x, src_stride, temp + (z * 8), x_filter); in scaledconvolve_horiz_w8() 363 const int16_t *const x_filter = x_filters[x_q4 & SUBPEL_MASK]; in scaledconvolve_horiz_w4() local 365 filter_horiz_w4_ssse3(src_x, src_stride, temp + (z * 4), x_filter); in scaledconvolve_horiz_w4()
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
D | vpx_convolve8_msa.c | 634 uint8_t *dst, const int16_t *x_filter) { in filter_horiz_w4_msa() argument 655 filt = LD_SH(x_filter); in filter_horiz_w4_msa() 675 uint8_t *dst, const int16_t *x_filter) { in filter_horiz_w8_msa() argument 692 filt = LD_SH(x_filter); in filter_horiz_w8_msa() 725 uint8_t *dst, const int16_t *x_filter) { in filter_horiz_w16_msa() argument 750 filt = LD_SH(x_filter); in filter_horiz_w16_msa() 865 const int16_t *const x_filter = x_filters[x_q4 & SUBPEL_MASK]; in scaledconvolve_horiz_w4() local 868 filter_horiz_w4_msa(src_x, src_stride, temp + (z * 4), x_filter); in scaledconvolve_horiz_w4() 901 const int16_t *const x_filter = x_filters[x_q4 & SUBPEL_MASK]; in scaledconvolve_horiz_w8() local 904 filter_horiz_w8_msa(src_x, src_stride, temp + (z * 8), x_filter); in scaledconvolve_horiz_w8() [all …]
|
/external/libvpx/libvpx/vpx_dsp/ppc/ |
D | vpx_convolve_vsx.c | 170 const int16_t *const x_filter) { in convolve_line_h() argument 172 const int16x8_t f = vec_vsx_ld(0, x_filter); in convolve_line_h()
|