/external/libaom/libaom/av1/common/ |
D | convolve.h | 46 ConvolveParams *conv_params); 52 const int subpel_y_qn, ConvolveParams *conv_params, int bd); 62 ConvolveParams *conv_params, 69 ConvolveParams conv_params; in get_conv_params_no_round() local 70 conv_params.compound_index = cmp_index; in get_conv_params_no_round() 73 conv_params.is_compound = is_compound; in get_conv_params_no_round() 74 conv_params.round_0 = ROUND0_BITS; in get_conv_params_no_round() 75 conv_params.round_1 = is_compound ? COMPOUND_ROUND1_BITS in get_conv_params_no_round() 76 : 2 * FILTER_BITS - conv_params.round_0; in get_conv_params_no_round() 77 const int intbufrange = bd + FILTER_BITS - conv_params.round_0 + 2; in get_conv_params_no_round() [all …]
|
D | convolve.c | 120 ConvolveParams *conv_params) { in av1_convolve_2d_sr_c() argument 129 FILTER_BITS * 2 - conv_params->round_0 - conv_params->round_1; in av1_convolve_2d_sr_c() 143 (int16_t)ROUND_POWER_OF_TWO(sum, conv_params->round_0); in av1_convolve_2d_sr_c() 151 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_convolve_2d_sr_c() 159 int16_t res = ROUND_POWER_OF_TWO(sum, conv_params->round_1) - in av1_convolve_2d_sr_c() 160 ((1 << (offset_bits - conv_params->round_1)) + in av1_convolve_2d_sr_c() 161 (1 << (offset_bits - conv_params->round_1 - 1))); in av1_convolve_2d_sr_c() 172 ConvolveParams *conv_params) { in av1_convolve_y_sr_c() argument 176 (void)conv_params; in av1_convolve_y_sr_c() 178 assert(conv_params->round_0 <= FILTER_BITS); in av1_convolve_y_sr_c() [all …]
|
D | av1_rtcd_defs.pl | 97 …, const int16_t *filter_y, int y_step_q4, int w, int h, const ConvolveParams *conv_params, int bd"; 101 …_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, const ConvolveParams *conv_params"; 198 …de, const CONV_BUF_TYPE *src1, int src1_stride, int h, int w, ConvolveParams *conv_params, int bd"; 384 …t, int p_stride, int subsampling_x, int subsampling_y, ConvolveParams *conv_params, int16_t alpha,… 388 …_stride, int subsampling_x, int subsampling_y, int bd, ConvolveParams *conv_params, int16_t alpha,… 412 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params"; 413 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params"; 414 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params"; 415 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params"; 416 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params"; [all …]
|
D | warped_motion.c | 327 ConvolveParams *conv_params, int16_t alpha, in av1_highbd_warp_affine_c() argument 331 conv_params->round_0 + in av1_highbd_warp_affine_c() 332 AOMMAX(bd + FILTER_BITS - conv_params->round_0 - 14, 0); in av1_highbd_warp_affine_c() 333 const int reduce_bits_vert = conv_params->is_compound in av1_highbd_warp_affine_c() 334 ? conv_params->round_1 in av1_highbd_warp_affine_c() 340 2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1; in av1_highbd_warp_affine_c() 341 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_highbd_warp_affine_c() 343 assert(IMPLIES(conv_params->is_compound, conv_params->dst != NULL)); in av1_highbd_warp_affine_c() 407 if (conv_params->is_compound) { in av1_highbd_warp_affine_c() 409 &conv_params in av1_highbd_warp_affine_c() [all …]
|
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/kernels/ |
D | conv_powervr.cc | 194 const ConvPowerVR::ConvParams& conv_params, in GenerateConvPowerVR1x1() argument 204 const bool is1x1 = conv_params.x_kernel_is_1 && conv_params.y_kernel_is_1; in GenerateConvPowerVR1x1() 211 conv_params.weights_upload_type == in GenerateConvPowerVR1x1() 213 conv_params.weights_upload_type == in GenerateConvPowerVR1x1() 217 conv_params.weights_upload_type == in GenerateConvPowerVR1x1() 222 const int3 work_group_size = conv_params.work_group_size; in GenerateConvPowerVR1x1() 223 const int3 block_size = conv_params.block_size; in GenerateConvPowerVR1x1() 224 if (conv_params.fixed_work_group_size) { in GenerateConvPowerVR1x1() 244 launch_remap[conv_params.work_group_launch_order.x] = 0; in GenerateConvPowerVR1x1() 245 launch_remap[conv_params.work_group_launch_order.y] = 1; in GenerateConvPowerVR1x1() [all …]
|
D | conv_3d.cc | 318 bool stride_correction, const Conv3D::ConvParams& conv_params, in GenerateConv3D() argument 334 const bool manual_clamp_x = buffer_type && !conv_params.x_kernel_is_1; in GenerateConv3D() 335 const bool manual_clamp_y = buffer_type && !conv_params.y_kernel_is_1; in GenerateConv3D() 338 !conv_params.z_kernel_is_1; in GenerateConv3D() 347 const bool is1x1x1 = conv_params.x_kernel_is_1 && conv_params.y_kernel_is_1 && in GenerateConv3D() 348 conv_params.z_kernel_is_1; in GenerateConv3D() 351 conv_params.weights_upload_type == in GenerateConv3D() 353 conv_params.weights_upload_type == in GenerateConv3D() 356 const int3 work_group_size = conv_params.work_group_size; in GenerateConv3D() 357 const int4 block_size = conv_params.block_size; in GenerateConv3D() [all …]
|
/external/libaom/libaom/av1/common/x86/ |
D | av1_convolve_scale_sse4.c | 110 const ConvolveParams *conv_params, int bd) { in vfilter8() argument 111 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in vfilter8() 114 const __m128i round_shift = _mm_cvtsi32_si128(conv_params->round_1); in vfilter8() 116 const int32_t sub32 = ((1 << (offset_bits - conv_params->round_1)) + in vfilter8() 117 (1 << (offset_bits - conv_params->round_1 - 1))); in vfilter8() 120 CONV_BUF_TYPE *dst16 = conv_params->dst; in vfilter8() 121 const int dst16_stride = conv_params->dst_stride; in vfilter8() 123 FILTER_BITS * 2 - conv_params->round_0 - conv_params->round_1; in vfilter8() 127 _mm_set1_epi32(((1 << conv_params->round_1) >> 1)); in vfilter8() 130 const int w0 = conv_params->fwd_offset; in vfilter8() [all …]
|
D | jnt_convolve_avx2.c | 23 static INLINE __m256i unpack_weights_avx2(ConvolveParams *conv_params) { in unpack_weights_avx2() argument 24 const int w0 = conv_params->fwd_offset; in unpack_weights_avx2() 25 const int w1 = conv_params->bck_offset; in unpack_weights_avx2() 43 ConvolveParams *conv_params) { in av1_dist_wtd_convolve_x_avx2() argument 44 CONV_BUF_TYPE *dst = conv_params->dst; in av1_dist_wtd_convolve_x_avx2() 45 int dst_stride = conv_params->dst_stride; in av1_dist_wtd_convolve_x_avx2() 48 const int bits = FILTER_BITS - conv_params->round_1; in av1_dist_wtd_convolve_x_avx2() 49 const __m256i wt = unpack_weights_avx2(conv_params); in av1_dist_wtd_convolve_x_avx2() 50 const int do_average = conv_params->do_average; in av1_dist_wtd_convolve_x_avx2() 51 const int use_dist_wtd_comp_avg = conv_params->use_dist_wtd_comp_avg; in av1_dist_wtd_convolve_x_avx2() [all …]
|
D | highbd_jnt_convolve_avx2.c | 29 const int subpel_y_qn, ConvolveParams *conv_params, int bd) { in av1_highbd_dist_wtd_convolve_2d_copy_avx2() argument 30 CONV_BUF_TYPE *dst = conv_params->dst; in av1_highbd_dist_wtd_convolve_2d_copy_avx2() 31 int dst_stride = conv_params->dst_stride; in av1_highbd_dist_wtd_convolve_2d_copy_avx2() 38 FILTER_BITS * 2 - conv_params->round_1 - conv_params->round_0; in av1_highbd_dist_wtd_convolve_2d_copy_avx2() 40 const int do_average = conv_params->do_average; in av1_highbd_dist_wtd_convolve_2d_copy_avx2() 41 const int use_dist_wtd_comp_avg = conv_params->use_dist_wtd_comp_avg; in av1_highbd_dist_wtd_convolve_2d_copy_avx2() 42 const int w0 = conv_params->fwd_offset; in av1_highbd_dist_wtd_convolve_2d_copy_avx2() 43 const int w1 = conv_params->bck_offset; in av1_highbd_dist_wtd_convolve_2d_copy_avx2() 50 bd + 2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1; in av1_highbd_dist_wtd_convolve_2d_copy_avx2() 55 2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1; in av1_highbd_dist_wtd_convolve_2d_copy_avx2() [all …]
|
D | highbd_convolve_2d_sse4.c | 28 const int subpel_y_qn, ConvolveParams *conv_params, int bd) { in av1_highbd_dist_wtd_convolve_2d_copy_sse4_1() argument 29 CONV_BUF_TYPE *dst = conv_params->dst; in av1_highbd_dist_wtd_convolve_2d_copy_sse4_1() 30 int dst_stride = conv_params->dst_stride; in av1_highbd_dist_wtd_convolve_2d_copy_sse4_1() 37 FILTER_BITS * 2 - conv_params->round_1 - conv_params->round_0; in av1_highbd_dist_wtd_convolve_2d_copy_sse4_1() 39 const int do_average = conv_params->do_average; in av1_highbd_dist_wtd_convolve_2d_copy_sse4_1() 40 const int use_dist_wtd_comp_avg = conv_params->use_dist_wtd_comp_avg; in av1_highbd_dist_wtd_convolve_2d_copy_sse4_1() 41 const int w0 = conv_params->fwd_offset; in av1_highbd_dist_wtd_convolve_2d_copy_sse4_1() 42 const int w1 = conv_params->bck_offset; in av1_highbd_dist_wtd_convolve_2d_copy_sse4_1() 49 bd + 2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1; in av1_highbd_dist_wtd_convolve_2d_copy_sse4_1() 54 2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1; in av1_highbd_dist_wtd_convolve_2d_copy_sse4_1() [all …]
|
D | jnt_convolve_sse2.c | 24 ConvolveParams *conv_params) { in av1_dist_wtd_convolve_x_sse2() argument 26 CONV_BUF_TYPE *dst = conv_params->dst; in av1_dist_wtd_convolve_x_sse2() 27 const int dst_stride = conv_params->dst_stride; in av1_dist_wtd_convolve_x_sse2() 30 const int bits = FILTER_BITS - conv_params->round_1; in av1_dist_wtd_convolve_x_sse2() 32 const __m128i round_const = _mm_set1_epi32((1 << conv_params->round_0) >> 1); in av1_dist_wtd_convolve_x_sse2() 33 const __m128i round_shift = _mm_cvtsi32_si128(conv_params->round_0); in av1_dist_wtd_convolve_x_sse2() 34 const int w0 = conv_params->fwd_offset; in av1_dist_wtd_convolve_x_sse2() 35 const int w1 = conv_params->bck_offset; in av1_dist_wtd_convolve_x_sse2() 39 const int do_average = conv_params->do_average; in av1_dist_wtd_convolve_x_sse2() 40 const int use_dist_wtd_comp_avg = conv_params->use_dist_wtd_comp_avg; in av1_dist_wtd_convolve_x_sse2() [all …]
|
D | highbd_jnt_convolve_sse4.c | 24 const int subpel_y_qn, ConvolveParams *conv_params, int bd) { in av1_highbd_dist_wtd_convolve_y_sse4_1() argument 25 CONV_BUF_TYPE *dst = conv_params->dst; in av1_highbd_dist_wtd_convolve_y_sse4_1() 26 int dst_stride = conv_params->dst_stride; in av1_highbd_dist_wtd_convolve_y_sse4_1() 29 const int bits = FILTER_BITS - conv_params->round_0; in av1_highbd_dist_wtd_convolve_y_sse4_1() 35 const int do_average = conv_params->do_average; in av1_highbd_dist_wtd_convolve_y_sse4_1() 36 const int use_dist_wtd_comp_avg = conv_params->use_dist_wtd_comp_avg; in av1_highbd_dist_wtd_convolve_y_sse4_1() 38 const int w0 = conv_params->fwd_offset; in av1_highbd_dist_wtd_convolve_y_sse4_1() 39 const int w1 = conv_params->bck_offset; in av1_highbd_dist_wtd_convolve_y_sse4_1() 43 _mm_set1_epi32(((1 << conv_params->round_1) >> 1)); in av1_highbd_dist_wtd_convolve_y_sse4_1() 44 const __m128i round_shift_y = _mm_cvtsi32_si128(conv_params->round_1); in av1_highbd_dist_wtd_convolve_y_sse4_1() [all …]
|
D | warp_plane_sse4.c | 456 ConvolveParams *conv_params, const int round_bits, const int offset_bits, in unpack_weights_and_set_round_const() argument 459 _mm_set1_epi16(-(1 << (offset_bits - conv_params->round_1)) - in unpack_weights_and_set_round_const() 460 (1 << (offset_bits - conv_params->round_1 - 1))); in unpack_weights_and_set_round_const() 463 const int w0 = conv_params->fwd_offset; in unpack_weights_and_set_round_const() 464 const int w1 = conv_params->bck_offset; in unpack_weights_and_set_round_const() 584 uint8_t *pred, ConvolveParams *conv_params, int i, int j, int k, in store_vertical_filter_output() argument 590 if (conv_params->is_compound) { in store_vertical_filter_output() 592 (__m128i *)&conv_params->dst[(i + k + 4) * conv_params->dst_stride + j]; in store_vertical_filter_output() 597 if (conv_params->do_average) { in store_vertical_filter_output() 601 if (conv_params->use_dist_wtd_comp_avg) { in store_vertical_filter_output() [all …]
|
D | jnt_convolve_ssse3.c | 23 const int subpel_y_qn, ConvolveParams *conv_params) { in av1_dist_wtd_convolve_2d_ssse3() argument 24 CONV_BUF_TYPE *dst = conv_params->dst; in av1_dist_wtd_convolve_2d_ssse3() 25 int dst_stride = conv_params->dst_stride; in av1_dist_wtd_convolve_2d_ssse3() 35 const int do_average = conv_params->do_average; in av1_dist_wtd_convolve_2d_ssse3() 36 const int use_dist_wtd_comp_avg = conv_params->use_dist_wtd_comp_avg; in av1_dist_wtd_convolve_2d_ssse3() 41 const int w0 = conv_params->fwd_offset; in av1_dist_wtd_convolve_2d_ssse3() 42 const int w1 = conv_params->bck_offset; in av1_dist_wtd_convolve_2d_ssse3() 48 bd + 2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1; in av1_dist_wtd_convolve_2d_ssse3() 52 2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1; in av1_dist_wtd_convolve_2d_ssse3() 76 ((1 << conv_params->round_0) >> 1) + (1 << (bd + FILTER_BITS - 1))); in av1_dist_wtd_convolve_2d_ssse3() [all …]
|
D | convolve_2d_sse2.c | 26 ConvolveParams *conv_params) { in av1_convolve_2d_sr_sse2() argument 40 FILTER_BITS * 2 - conv_params->round_0 - conv_params->round_1; in av1_convolve_2d_sr_sse2() 41 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_convolve_2d_sr_sse2() 43 assert(conv_params->round_0 > 0); in av1_convolve_2d_sr_sse2() 66 (1 << (bd + FILTER_BITS - 1)) + ((1 << conv_params->round_0) >> 1)); in av1_convolve_2d_sr_sse2() 67 const __m128i round_shift = _mm_cvtsi32_si128(conv_params->round_0); in av1_convolve_2d_sr_sse2() 132 _mm_set1_epi32((1 << offset_bits) + ((1 << conv_params->round_1) >> 1)); in av1_convolve_2d_sr_sse2() 133 const __m128i sum_shift = _mm_cvtsi32_si128(conv_params->round_1); in av1_convolve_2d_sr_sse2() 136 ((1 << bits) >> 1) - (1 << (offset_bits - conv_params->round_1)) - in av1_convolve_2d_sr_sse2() 137 ((1 << (offset_bits - conv_params->round_1)) >> 1)); in av1_convolve_2d_sr_sse2() [all …]
|
D | convolve_2d_avx2.c | 28 ConvolveParams *conv_params) { in av1_convolve_2d_sr_avx2() argument 34 FILTER_BITS * 2 - conv_params->round_0 - conv_params->round_1; in av1_convolve_2d_sr_avx2() 35 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_convolve_2d_sr_avx2() 37 assert(conv_params->round_0 > 0); in av1_convolve_2d_sr_avx2() 40 ((1 << (conv_params->round_0 - 1)) >> 1) + (1 << (bd + FILTER_BITS - 2))); in av1_convolve_2d_sr_avx2() 41 const __m128i round_shift_h = _mm_cvtsi32_si128(conv_params->round_0 - 1); in av1_convolve_2d_sr_avx2() 44 (1 << offset_bits) + ((1 << conv_params->round_1) >> 1)); in av1_convolve_2d_sr_avx2() 45 const __m128i sum_shift_v = _mm_cvtsi32_si128(conv_params->round_1); in av1_convolve_2d_sr_avx2() 48 ((1 << bits) >> 1) - (1 << (offset_bits - conv_params->round_1)) - in av1_convolve_2d_sr_avx2() 49 ((1 << (offset_bits - conv_params->round_1)) >> 1)); in av1_convolve_2d_sr_avx2() [all …]
|
/external/libaom/libaom/test/ |
D | warp_filter_test_util.cc | 136 ConvolveParams conv_params = get_conv_params(0, 0, bd); in RunSpeedTest() local 153 conv_params = get_conv_params_no_round(do_average, 0, dsta, out_w, 1, bd); in RunSpeedTest() 154 conv_params.use_dist_wtd_comp_avg = 0; in RunSpeedTest() 161 sub_x, sub_y, &conv_params, alpha, beta, gamma, delta); in RunSpeedTest() 196 ConvolveParams conv_params = get_conv_params(0, 0, bd); in RunCheckOutput() local 220 conv_params = in RunCheckOutput() 223 conv_params = get_conv_params(0, 0, bd); in RunCheckOutput() 226 conv_params.use_dist_wtd_comp_avg = 0; in RunCheckOutput() 228 conv_params.use_dist_wtd_comp_avg = 1; in RunCheckOutput() 229 conv_params.fwd_offset = quant_dist_lookup_table[ii][jj][0]; in RunCheckOutput() [all …]
|
D | reconinter_test.cc | 65 ConvolveParams *conv_params, int bd); 103 ConvolveParams conv_params = get_conv_params_no_round(0, 0, NULL, 0, 1, bd); in RunCheckOutput() local 106 bd + 2 * FILTER_BITS - conv_params.round_0 - conv_params.round_1 + 2; in RunCheckOutput() 116 height, width, &conv_params, bd); in RunCheckOutput() 119 height, width, &conv_params, bd); in RunCheckOutput() 143 ConvolveParams conv_params = get_conv_params_no_round(0, 0, NULL, 0, 1, bd); in RunSpeedTest() local 146 bd + 2 * FILTER_BITS - conv_params.round_0 - conv_params.round_1 + 2; in RunSpeedTest() 159 width, height, width, &conv_params, in RunSpeedTest() 170 &conv_params, bd); in RunSpeedTest()
|
/external/tensorflow/tensorflow/lite/experimental/delegates/hexagon/ |
D | utils.cc | 179 const TfLiteConvParams* conv_params = in IsNodeSupportedByHexagon() local 181 return (IsActivationReluOrNone(conv_params->activation) && in IsNodeSupportedByHexagon() 182 conv_params->stride_height <= 3 && in IsNodeSupportedByHexagon() 183 conv_params->stride_width <= 3 && in IsNodeSupportedByHexagon() 184 conv_params->dilation_height_factor == 1 && in IsNodeSupportedByHexagon() 185 conv_params->dilation_width_factor == 1); in IsNodeSupportedByHexagon() 194 const TfLiteDepthwiseConvParams* conv_params = in IsNodeSupportedByHexagon() local 197 const bool dilation = conv_params->dilation_height_factor != 1 || in IsNodeSupportedByHexagon() 198 conv_params->dilation_width_factor != 1; in IsNodeSupportedByHexagon() 201 if (conv_params->stride_height != 1 || conv_params->stride_width != 1) in IsNodeSupportedByHexagon() [all …]
|
/external/libaom/config/x86/config/ |
D | av1_rtcd.h | 85 …de, const CONV_BUF_TYPE *src1, int src1_stride, int h, int w, ConvolveParams *conv_params, int bd); 114 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 115 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 118 …_qn, const int x_step_qn, const int subpel_y_qn, const int y_step_qn, ConvolveParams *conv_params); 121 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 122 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 128 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 129 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 132 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 133 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); [all …]
|
/external/libaom/config/x86_64/config/ |
D | av1_rtcd.h | 85 …de, const CONV_BUF_TYPE *src1, int src1_stride, int h, int w, ConvolveParams *conv_params, int bd); 114 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 115 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 118 …_qn, const int x_step_qn, const int subpel_y_qn, const int y_step_qn, ConvolveParams *conv_params); 121 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 122 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 128 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 129 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 132 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 133 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); [all …]
|
/external/libaom/config/arm/config/ |
D | av1_rtcd.h | 86 …de, const CONV_BUF_TYPE *src1, int src1_stride, int h, int w, ConvolveParams *conv_params, int bd); 87 …de, const CONV_BUF_TYPE *src1, int src1_stride, int h, int w, ConvolveParams *conv_params, int bd); 114 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 115 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 118 …_qn, const int x_step_qn, const int subpel_y_qn, const int y_step_qn, ConvolveParams *conv_params); 121 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 122 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 128 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 129 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 132 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); [all …]
|
/external/libaom/config/arm64/config/ |
D | av1_rtcd.h | 86 …de, const CONV_BUF_TYPE *src1, int src1_stride, int h, int w, ConvolveParams *conv_params, int bd); 87 …de, const CONV_BUF_TYPE *src1, int src1_stride, int h, int w, ConvolveParams *conv_params, int bd); 114 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 115 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 118 …_qn, const int x_step_qn, const int subpel_y_qn, const int y_step_qn, ConvolveParams *conv_params); 121 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 122 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 128 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 129 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); 132 …arams *filter_params_y, const int subpel_x_qn, const int subpel_y_qn, ConvolveParams *conv_params); [all …]
|
/external/libaom/libaom/av1/common/arm/ |
D | wiener_convolve_neon.c | 34 const ConvolveParams *conv_params) { in av1_wiener_convolve_add_src_neon() argument 64 assert((conv_params->round_0) >= 1); in av1_wiener_convolve_add_src_neon() 123 bd, conv_params->round_0); in av1_wiener_convolve_add_src_neon() 130 bd, conv_params->round_0); in av1_wiener_convolve_add_src_neon() 137 bd, conv_params->round_0); in av1_wiener_convolve_add_src_neon() 144 bd, conv_params->round_0); in av1_wiener_convolve_add_src_neon() 151 bd, conv_params->round_0); in av1_wiener_convolve_add_src_neon() 158 bd, conv_params->round_0); in av1_wiener_convolve_add_src_neon() 165 bd, conv_params->round_0); in av1_wiener_convolve_add_src_neon() 172 bd, conv_params->round_0); in av1_wiener_convolve_add_src_neon() [all …]
|
D | warp_plane_neon.c | 476 ConvolveParams *conv_params, int16_t alpha, in av1_warp_affine_neon() argument 480 const int w0 = conv_params->fwd_offset; in av1_warp_affine_neon() 481 const int w1 = conv_params->bck_offset; in av1_warp_affine_neon() 496 const int reduce_bits_horiz = conv_params->round_0; in av1_warp_affine_neon() 497 const int reduce_bits_vert = conv_params->is_compound in av1_warp_affine_neon() 498 ? conv_params->round_1 in av1_warp_affine_neon() 503 assert(IMPLIES(conv_params->is_compound, conv_params->dst != NULL)); in av1_warp_affine_neon() 508 2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1; in av1_warp_affine_neon() 510 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_warp_affine_neon() 512 vdup_n_s16(-((1 << (offset_bits - conv_params->round_1)) + in av1_warp_affine_neon() [all …]
|