/external/swiftshader/third_party/LLVM/lib/Support/ |
D | APFloat.cpp | 26 #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/eigen/unsupported/test/ |
D | cxx11_tensor_convolution.cpp | 30 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()
|
D | cxx11_tensor_device.cu | 156 …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()
|
D | cxx11_tensor_cuda.cu | 349 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/skia/gm/ |
D | imagefiltersgraph.cpp | 128 sk_sp<SkImageFilter> convolve(SkMatrixConvolutionImageFilter::Make(kernelSize, in onDraw() local 138 paint.setImageFilter(std::move(convolve)); in onDraw()
|
/external/ltp/testcases/realtime/tools/ |
D | ftqviz.py | 47 y = convolve(w/w.sum(), s, mode='same')
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorConvolution.h | 402 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);
|
D | TensorBase.h | 490 convolve(const KernelDerived& kernel, const Dimensions& dims) const { in convolve() function
|
D | README.md | 1211 ### <Operation> convolve(const Kernel& kernel, const Dimensions& dims) 1230 output = input.convolve(kernel, dims);
|
/external/libvpx/libvpx/vpx_dsp/ppc/ |
D | vpx_convolve_vsx.c | 300 static inline void convolve(const uint8_t *src, ptrdiff_t src_stride, in convolve() function 401 convolve(src, src_stride, dst, dst_stride, filters_x, x0_q4, x_step_q4, in vpx_convolve8_vsx()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | vpx_convolve.c | 116 static void convolve(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, in convolve() function 217 convolve(src, src_stride, dst, dst_stride, filters_x, x0_q4, x_step_q4, in vpx_convolve8_c()
|
D | vpx_dsp.mk | 88 DSP_SRCS-$(ARCH_X86)$(ARCH_X86_64) += x86/convolve.h
|
/external/mesa3d/src/mesa/ |
D | Makefile.sources | 54 main/convolve.c \ 55 main/convolve.h \
|
/external/ImageMagick/Magick++/demo/ |
D | demo.cpp | 143 example.convolve( 3, kernel ); in main()
|
/external/eigen/bench/tensors/ |
D | tensor_benchmarks.h | 436 C.device(device_) = A.convolve(B, dims); in convolution()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Image.h | 788 void convolve(const size_t order_,const double *kernel_);
|
/external/ImageMagick/Magick++/ |
D | NEWS | 168 * Added convolve and unsharpmask methods to Image.
|
D | ChangeLog | 827 * lib/Image.cpp (convolve): New method to convolve image using
|
/external/ImageMagick/Magick++/lib/ |
D | Image.cpp | 2577 void Magick::Image::convolve(const size_t order_,const double *kernel_) in convolve() function in Magick::Image
|