Home
last modified time | relevance | path

Searched refs:convolve (Results 1 – 25 of 40) sorted by relevance

12

/external/swiftshader/third_party/LLVM/lib/Support/
DAPFloat.cpp26 #define convolve(lhs, rhs) ((lhs) * 4 + (rhs)) macro
1291 switch (convolve(category, rhs.category)) { in addOrSubtractSpecials()
1295 case convolve(fcNaN, fcZero): in addOrSubtractSpecials()
1296 case convolve(fcNaN, fcNormal): in addOrSubtractSpecials()
1297 case convolve(fcNaN, fcInfinity): in addOrSubtractSpecials()
1298 case convolve(fcNaN, fcNaN): in addOrSubtractSpecials()
1299 case convolve(fcNormal, fcZero): in addOrSubtractSpecials()
1300 case convolve(fcInfinity, fcNormal): in addOrSubtractSpecials()
1301 case convolve(fcInfinity, fcZero): in addOrSubtractSpecials()
1304 case convolve(fcZero, fcNaN): in addOrSubtractSpecials()
[all …]
/external/libaom/libaom/av1/common/
Dscale.c92 sf->convolve[0][0][0] = av1_convolve_2d_copy_sr; in av1_setup_scale_factors_for_frame()
94 sf->convolve[0][1][0] = av1_convolve_y_sr; in av1_setup_scale_factors_for_frame()
96 sf->convolve[1][0][0] = av1_convolve_x_sr; in av1_setup_scale_factors_for_frame()
98 sf->convolve[1][1][0] = av1_convolve_2d_sr; in av1_setup_scale_factors_for_frame()
100 sf->convolve[0][0][1] = av1_dist_wtd_convolve_2d_copy; in av1_setup_scale_factors_for_frame()
102 sf->convolve[0][1][1] = av1_dist_wtd_convolve_y; in av1_setup_scale_factors_for_frame()
104 sf->convolve[1][0][1] = av1_dist_wtd_convolve_x; in av1_setup_scale_factors_for_frame()
106 sf->convolve[1][1][1] = av1_dist_wtd_convolve_2d; in av1_setup_scale_factors_for_frame()
Dscale.h38 aom_convolve_fn_t convolve[2][2][2]; member
/external/eigen/unsupported/test/
Dcxx11_tensor_convolution.cpp30 typedef TensorEvaluator<decltype(input.convolve(kernel, dims3)), DefaultDevice> Evaluator; in test_evals()
31 Evaluator eval(input.convolve(kernel, dims3), DefaultDevice()); in test_evals()
57 result = input.convolve(kernel, dims); in test_expr()
88 valid = input.pad(padding).convolve(kernel, dims); in test_modes()
96 same = input.pad(padding).convolve(kernel, dims); in test_modes()
106 full = input.pad(padding).convolve(kernel, dims); in test_modes()
130 result = input.stride(stride_of_3).convolve(kernel, dims).stride(stride_of_2); in test_strides()
Dcxx11_tensor_device.cu156 …context->out().slice(indices, sizes).device(context->device()) = context->in1().convolve(context->… in test_1d_convolution()
166 …context->out().slice(indices, sizes).device(context->device()) = context->in1().convolve(context->… in test_2d_convolution()
176 …context->out().slice(indices, sizes).device(context->device()) = context->in1().convolve(context->… in test_3d_convolution()
Dcxx11_tensor_cuda.cu349 gpu_out.device(gpu_device) = gpu_input.convolve(gpu_kernel, dims); in test_cuda_convolution_1d()
402 gpu_out.device(gpu_device) = gpu_input.convolve(gpu_kernel, dims); in test_cuda_convolution_inner_dim_col_major_1d()
455 gpu_out.device(gpu_device) = gpu_input.convolve(gpu_kernel, dims); in test_cuda_convolution_inner_dim_row_major_1d()
509 gpu_out.device(gpu_device) = gpu_input.convolve(gpu_kernel, dims); in test_cuda_convolution_2d()
573 gpu_out.device(gpu_device) = gpu_input.convolve(gpu_kernel, dims); in test_cuda_convolution_3d()
/external/libaom/libaom/aom_dsp/x86/
Dconvolve_sse2.h35 static INLINE __m128i convolve(const __m128i *const s, in convolve() function
55 return convolve(ss, coeffs); in convolve_lo_x()
65 return convolve(ss, coeffs); in convolve_lo_y()
75 return convolve(ss, coeffs); in convolve_hi_y()
Dhighbd_convolve_ssse3.c89 const __m128i res_a0 = convolve(s, coeffs_y); in av1_highbd_convolve_y_sr_ssse3()
93 const __m128i res_a1 = convolve(s + 8, coeffs_y); in av1_highbd_convolve_y_sr_ssse3()
98 const __m128i res_b0 = convolve(s + 4, coeffs_y); in av1_highbd_convolve_y_sr_ssse3()
102 const __m128i res_b1 = convolve(s + 4 + 8, coeffs_y); in av1_highbd_convolve_y_sr_ssse3()
215 __m128i res_even = convolve(s, coeffs_x); in av1_highbd_convolve_x_sr_ssse3()
225 __m128i res_odd = convolve(s, coeffs_x); in av1_highbd_convolve_x_sr_ssse3()
Dconvolve_avx2.h88 __m256i res_a = convolve(s, coeffs_v); \
89 __m256i res_b = convolve(s + 4, coeffs_v); \
170 const __m256i res_a = convolve(s, coeffs_y); \
175 const __m256i res_b = convolve(s + 4, coeffs_y); \
317 static INLINE __m256i convolve(const __m256i *const s, in convolve() function
Dhighbd_convolve_avx2.c213 const __m256i res_a = convolve(s, coeffs_y); in av1_highbd_convolve_y_sr_avx2()
219 const __m256i res_b = convolve(s + 4, coeffs_y); in av1_highbd_convolve_y_sr_avx2()
315 __m256i res_even = convolve(s, coeffs_x); in av1_highbd_convolve_x_sr_avx2()
325 __m256i res_odd = convolve(s, coeffs_x); in av1_highbd_convolve_x_sr_avx2()
/external/libaom/libaom/av1/common/x86/
Dhighbd_convolve_2d_ssse3.c75 __m128i res_even = convolve(s, coeffs_x); in av1_highbd_convolve_2d_sr_ssse3()
85 __m128i res_odd = convolve(s, coeffs_x); in av1_highbd_convolve_2d_sr_ssse3()
134 const __m128i res_a0 = convolve(s, coeffs_y); in av1_highbd_convolve_2d_sr_ssse3()
140 const __m128i res_a1 = convolve(s + 8, coeffs_y); in av1_highbd_convolve_2d_sr_ssse3()
147 const __m128i res_b0 = convolve(s + 4, coeffs_y); in av1_highbd_convolve_2d_sr_ssse3()
153 const __m128i res_b1 = convolve(s + 4 + 8, coeffs_y); in av1_highbd_convolve_2d_sr_ssse3()
Dhighbd_jnt_convolve_sse4.c101 const __m128i res_a0 = convolve(s, coeffs_y); in av1_highbd_dist_wtd_convolve_y_sse4_1()
106 const __m128i res_a1 = convolve(s + 8, coeffs_y); in av1_highbd_dist_wtd_convolve_y_sse4_1()
165 const __m128i res_b0 = convolve(s + 4, coeffs_y); in av1_highbd_dist_wtd_convolve_y_sse4_1()
170 const __m128i res_b1 = convolve(s + 4 + 8, coeffs_y); in av1_highbd_dist_wtd_convolve_y_sse4_1()
318 __m128i res_even = convolve(s, coeffs_x); in av1_highbd_dist_wtd_convolve_x_sse4_1()
328 __m128i res_odd = convolve(s, coeffs_x); in av1_highbd_dist_wtd_convolve_x_sse4_1()
Dhighbd_convolve_2d_avx2.c84 __m256i res_even = convolve(s, coeffs_x); in av1_highbd_convolve_2d_sr_avx2()
94 __m256i res_odd = convolve(s, coeffs_x); in av1_highbd_convolve_2d_sr_avx2()
134 const __m256i res_a = convolve(s, coeffs_y); in av1_highbd_convolve_2d_sr_avx2()
142 const __m256i res_b = convolve(s + 4, coeffs_y); in av1_highbd_convolve_2d_sr_avx2()
Dconvolve_sse2.c38 static INLINE __m128i convolve(const __m128i *const s, in convolve() function
55 return convolve(ss, coeffs); in convolve_lo_x()
65 return convolve(ss, coeffs); in convolve_lo_y()
75 return convolve(ss, coeffs); in convolve_hi_y()
Dhighbd_jnt_convolve_avx2.c303 __m256i res_even = convolve(s, coeffs_x); in av1_highbd_dist_wtd_convolve_2d_avx2()
313 __m256i res_odd = convolve(s, coeffs_x); in av1_highbd_dist_wtd_convolve_2d_avx2()
353 const __m256i res_a = convolve(s, coeffs_y); in av1_highbd_dist_wtd_convolve_2d_avx2()
401 const __m256i res_b = convolve(s + 4, coeffs_y); in av1_highbd_dist_wtd_convolve_2d_avx2()
526 __m256i res_even = convolve(s, coeffs_x); in av1_highbd_dist_wtd_convolve_x_avx2()
536 __m256i res_odd = convolve(s, coeffs_x); in av1_highbd_dist_wtd_convolve_x_avx2()
747 const __m256i res_a = convolve(s, coeffs_y); in av1_highbd_dist_wtd_convolve_y_avx2()
795 const __m256i res_b = convolve(s + 4, coeffs_y); in av1_highbd_dist_wtd_convolve_y_avx2()
/external/tensorflow/tensorflow/contrib/gan/python/eval/python/
Dsliced_wasserstein_test.py41 return ndimage.convolve(
51 return ndimage.convolve(
/external/skqp/gm/
Dimagefiltersgraph.cpp128 sk_sp<SkImageFilter> convolve(SkMatrixConvolutionImageFilter::Make(kernelSize, in onDraw() local
138 paint.setImageFilter(std::move(convolve)); in onDraw()
/external/skia/gm/
Dimagefiltersgraph.cpp128 sk_sp<SkImageFilter> convolve(SkMatrixConvolutionImageFilter::Make(kernelSize, in onDraw() local
138 paint.setImageFilter(std::move(convolve)); in onDraw()
/external/libaom/libaom/av1/common/arm/
Dwarp_plane_neon.c201 static INLINE void convolve(int32x2x2_t x0, int32x2x2_t x1, uint8x8_t src_0, in convolve() function
277 convolve(b0, b1, src_1_low, src_3_low, &res_0246_even); in horizontal_filter_neon()
283 convolve(b0, b1, src_2_low, src_4_low, &res_0246_odd); in horizontal_filter_neon()
289 convolve(b0, b1, src_2_low, src_4_low, &res_1357_even); in horizontal_filter_neon()
295 convolve(b0, b1, src_5_low, src_6_low, &res_1357_odd); in horizontal_filter_neon()
/external/ltp/testcases/realtime/tools/
Dftqviz.py47 y = convolve(w/w.sum(), s, mode='same')
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorConvolution.h402 convolve(firstInput(index), 0, NumKernelDims-1, result);
440 convolve(startInputs[0], 0, NumKernelDims-1, data[0]);
443 convolve(firstInput(index+i), 0, NumKernelDims-1, data[i]);
446 convolve(startInputs[1], 0, NumKernelDims-1, data[PacketSize-1]);
490 …EIGEN_DEVICE_FUNC void convolve(Index firstIndex, Index firstKernel, int DimIndex, CoeffReturnType…
495 convolve(input, kernel, DimIndex-1, accum);
/external/libvpx/libvpx/vpx_dsp/ppc/
Dvpx_convolve_vsx.c308 static VPX_FORCE_INLINE void convolve(const uint8_t *src, ptrdiff_t src_stride, in convolve() function
392 convolve(src, src_stride, dst, dst_stride, filter, x0_q4, x_step_q4, y0_q4, in vpx_convolve8_vsx()
/external/mesa3d/src/mesa/
DMakefile.sources54 main/convolve.c \
55 main/convolve.h \
/external/libaom/libaom/av1/
Dav1.cmake38 "${AOM_ROOT}/av1/common/convolve.c"
39 "${AOM_ROOT}/av1/common/convolve.h"
/external/ImageMagick/Magick++/demo/
Ddemo.cpp141 example.convolve( 3, kernel ); in main()

12