/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/common/tasks/ |
D | conv_powervr.cc | 340 const ConvParams& conv_params) { in GenerateConv() argument 352 desc.memory_type = conv_params.weights_upload_type == in GenerateConv() 440 conv_params.weights_upload_type == in GenerateConv() 442 conv_params.weights_upload_type == in GenerateConv() 446 conv_params.block_size.w * 4 * conv_params.src_depth_loop_size; in GenerateConv() 448 const bool use_simd_broadcast = conv_params.IsPrivateMemBroadcast(); in GenerateConv() 449 const int simd_size = conv_params.simd_size; in GenerateConv() 454 conv_params.weights_upload_type == in GenerateConv() 460 conv_params.weights_data_type == DataType::FLOAT32 ? "float4" : "half4"; in GenerateConv() 473 const int4 block_size = conv_params.block_size; in GenerateConv() [all …]
|
D | conv_buffer_1x1.cc | 84 ConvBuffer1x1::ConvParams conv_params; in GetBestParams() local 85 conv_params.element_size = 4; in GetBestParams() 86 conv_params.block_size = int3(1, 1, 1); in GetBestParams() 88 return conv_params; in GetBestParams() 95 conv_params.element_size = 8; in GetBestParams() 98 conv_params.block_size.x = 2; in GetBestParams() 100 return conv_params; in GetBestParams() 112 conv_params.element_size = 8; in GetBestParams() 116 conv_params.block_size.x = 2; in GetBestParams() 118 conv_params.block_size.y = 2; in GetBestParams() [all …]
|
/external/tensorflow/tensorflow/lite/micro/kernels/ |
D | depthwise_conv_test.cc | 45 TfLiteDepthwiseConvParams* conv_params, float tolerance, int tensors_size, in ValidateDepthwiseConvGoldens() argument 55 reinterpret_cast<void*>(conv_params)); in ValidateDepthwiseConvGoldens() 61 conv_params->padding = kTfLitePaddingValid; in ValidateDepthwiseConvGoldens() 62 conv_params->stride_height = 1; in ValidateDepthwiseConvGoldens() 63 conv_params->stride_width = 1; in ValidateDepthwiseConvGoldens() 64 conv_params->depth_multiplier = depth_mul; in ValidateDepthwiseConvGoldens() 66 const char* init_data = reinterpret_cast<const char*>(conv_params); in ValidateDepthwiseConvGoldens() 90 TfLiteDepthwiseConvParams* conv_params, in TestDepthwiseConvFloat() argument 109 conv_params, 1e-5, tensors_size, tensors); in TestDepthwiseConvFloat() 120 TfLiteDepthwiseConvParams* conv_params) { in TestDepthwiseConvQuantizedPerLayer() argument [all …]
|
D | conv_test_common.cc | 23 int output_length, TfLiteConvParams* conv_params, in InvokeConv() argument 31 outputs_array, conv_params); in InvokeConv() 33 const char* init_data = reinterpret_cast<const char*>(conv_params); in InvokeConv() 45 TfLiteConvParams* conv_params, in ValidateConvGoldens() argument 49 conv_params, registration, output_data); in ValidateConvGoldens() 61 int output_length, TfLiteConvParams* conv_params, in InvokeConv() argument 63 return InvokeConv<float>(tensors, tensors_size, output_length, conv_params, in InvokeConv() 68 int output_length, TfLiteConvParams* conv_params, in InvokeConv() argument 70 return InvokeConv<int8_t>(tensors, tensors_size, output_length, conv_params, in InvokeConv() 75 int output_length, TfLiteConvParams* conv_params, in InvokeConv() argument [all …]
|
D | conv_test.h | 30 int output_length, TfLiteConvParams* conv_params, 34 int output_length, TfLiteConvParams* conv_params, 38 int output_length, TfLiteConvParams* conv_params, 44 TfLiteConvParams* conv_params, 51 TfLiteConvParams* conv_params, 58 TfLiteConvParams* conv_params, 67 TfLiteConvParams* conv_params, 77 TfLiteConvParams* conv_params, TfLiteRegistration registration, 88 float output_scale, int output_zero_point, TfLiteConvParams* conv_params,
|
/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 …]
|
/external/tensorflow/tensorflow/lite/micro/kernels/cmsis_nn/ |
D | conv.cc | 103 cmsis_nn_conv_params conv_params; in Prepare() local 104 conv_params.input_offset = -input->params.zero_point; in Prepare() 105 conv_params.output_offset = output->params.zero_point; in Prepare() 106 conv_params.stride.h = params.stride_height; in Prepare() 107 conv_params.stride.w = params.stride_width; in Prepare() 108 conv_params.dilation.h = params.dilation_height_factor; in Prepare() 109 conv_params.dilation.w = params.dilation_width_factor; in Prepare() 110 conv_params.padding.h = data->reference_op_data.padding.height; in Prepare() 111 conv_params.padding.w = data->reference_op_data.padding.width; in Prepare() 112 conv_params.activation.min = data->reference_op_data.output_activation_min; in Prepare() [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 …]
|
/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/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/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/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 …]
|