Searched refs:reduce_bits_horiz (Results 1 – 5 of 5) sorted by relevance
/external/libaom/libaom/av1/common/x86/ |
D | highbd_warp_plane_sse4.c | 117 const int offset_bits_horiz, const int reduce_bits_horiz, int k) { in highbd_filter_src_pixels() argument 122 ((1 << reduce_bits_horiz) >> 1)); in highbd_filter_src_pixels() 135 _mm_cvtsi32_si128(reduce_bits_horiz)); in highbd_filter_src_pixels() 149 _mm_cvtsi32_si128(reduce_bits_horiz)); in highbd_filter_src_pixels() 160 const int reduce_bits_horiz) { in highbd_horiz_filter() argument 164 reduce_bits_horiz, k); in highbd_horiz_filter() 170 const int offset_bits_horiz, const int reduce_bits_horiz) { in highbd_warp_horizontal_filter_alpha0_beta0() argument 191 reduce_bits_horiz, k); in highbd_warp_horizontal_filter_alpha0_beta0() 198 const int offset_bits_horiz, const int reduce_bits_horiz) { in highbd_warp_horizontal_filter_alpha0() argument 218 reduce_bits_horiz, k); in highbd_warp_horizontal_filter_alpha0() [all …]
|
D | warp_plane_sse4.c | 243 const int reduce_bits_horiz, int k) { in filter_src_pixels() argument 266 ((1 << reduce_bits_horiz) >> 1)); in filter_src_pixels() 280 tmp[k + 7] = _mm_srl_epi16(res, _mm_cvtsi32_si128(reduce_bits_horiz)); in filter_src_pixels() 354 const int reduce_bits_horiz) { in horizontal_filter() argument 357 filter_src_pixels(src, tmp, coeff, offset_bits_horiz, reduce_bits_horiz, k); in horizontal_filter() 365 const int reduce_bits_horiz) { in warp_horizontal_filter() argument 379 reduce_bits_horiz); in warp_horizontal_filter() 386 const int offset_bits_horiz, const int reduce_bits_horiz) { in warp_horizontal_filter_alpha0() argument 403 filter_src_pixels(src, tmp, coeff, offset_bits_horiz, reduce_bits_horiz, k); in warp_horizontal_filter_alpha0() 410 const int offset_bits_horiz, const int reduce_bits_horiz) { in warp_horizontal_filter_beta0() argument [all …]
|
D | warp_plane_avx2.c | 1144 const int reduce_bits_horiz = conv_params->round_0; in av1_warp_affine_avx2() local 1147 : 2 * FILTER_BITS - reduce_bits_horiz; in av1_warp_affine_avx2() 1151 const int offset_bits_vert = bd + 2 * FILTER_BITS - reduce_bits_horiz; in av1_warp_affine_avx2() 1161 (1 << offset_bits_horiz) + ((1 << reduce_bits_horiz) >> 1)); in av1_warp_affine_avx2() 1162 const __m128i shift = _mm_cvtsi32_si128(reduce_bits_horiz); in av1_warp_affine_avx2() 1183 const int16_t const4 = (1 << (bd + FILTER_BITS - reduce_bits_horiz - 1)); in av1_warp_affine_avx2() 1184 const int16_t const5 = (1 << (FILTER_BITS - reduce_bits_horiz)); in av1_warp_affine_avx2()
|
/external/libaom/libaom/av1/common/arm/ |
D | warp_plane_neon.c | 224 const int reduce_bits_horiz) { in horizontal_filter_neon() argument 228 const int16x8_t shift = vdupq_n_s16(-(int16_t)reduce_bits_horiz); in horizontal_filter_neon() 496 const int reduce_bits_horiz = conv_params->round_0; in av1_warp_affine_neon() local 499 : 2 * FILTER_BITS - reduce_bits_horiz; in av1_warp_affine_neon() 505 const int offset_bits_vert = bd + 2 * FILTER_BITS - reduce_bits_horiz; in av1_warp_affine_neon() 548 (1 << (bd + FILTER_BITS - reduce_bits_horiz - 1)) + in av1_warp_affine_neon() 549 ref[iy * stride] * (1 << (FILTER_BITS - reduce_bits_horiz)); in av1_warp_affine_neon() 560 int16_t dup_val = (1 << (bd + FILTER_BITS - reduce_bits_horiz - 1)) + in av1_warp_affine_neon() 562 (1 << (FILTER_BITS - reduce_bits_horiz)); in av1_warp_affine_neon() 599 offset_bits_horiz, reduce_bits_horiz); in av1_warp_affine_neon() [all …]
|
/external/libaom/libaom/av1/common/ |
D | warped_motion.c | 330 const int reduce_bits_horiz = in av1_highbd_warp_affine_c() local 335 : 2 * FILTER_BITS - reduce_bits_horiz; in av1_highbd_warp_affine_c() 336 const int max_bits_horiz = bd + FILTER_BITS + 1 - reduce_bits_horiz; in av1_highbd_warp_affine_c() 338 const int offset_bits_vert = bd + 2 * FILTER_BITS - reduce_bits_horiz; in av1_highbd_warp_affine_c() 386 sum = ROUND_POWER_OF_TWO(sum, reduce_bits_horiz); in av1_highbd_warp_affine_c() 602 const int reduce_bits_horiz = conv_params->round_0; in av1_warp_affine_c() local 605 : 2 * FILTER_BITS - reduce_bits_horiz; in av1_warp_affine_c() 606 const int max_bits_horiz = bd + FILTER_BITS + 1 - reduce_bits_horiz; in av1_warp_affine_c() 608 const int offset_bits_vert = bd + 2 * FILTER_BITS - reduce_bits_horiz; in av1_warp_affine_c() 662 sum = ROUND_POWER_OF_TWO(sum, reduce_bits_horiz); in av1_warp_affine_c()
|