/external/opencv3/modules/cudaarithm/src/cuda/ |
D | split_merge.cu | 70 gridMerge(zipPtr(globPtr<T>(src[0]), globPtr<T>(src[1])), in call() 71 globPtr<typename MakeVec<T, 2>::type>(dst), in call() 80 gridMerge(zipPtr(globPtr<T>(src[0]), globPtr<T>(src[1]), globPtr<T>(src[2])), in call() 81 globPtr<typename MakeVec<T, 3>::type>(dst), in call() 90 … gridMerge(zipPtr(globPtr<T>(src[0]), globPtr<T>(src[1]), globPtr<T>(src[2]), globPtr<T>(src[3])), in call() 91 globPtr<typename MakeVec<T, 4>::type>(dst), in call() 165 globPtr<T>(dst[0]), globPtr<T>(dst[1]) in call() 168 gridSplit(globPtr<typename MakeVec<T, 2>::type>(src), dstarr, stream); in call() 178 globPtr<T>(dst[0]), globPtr<T>(dst[1]), globPtr<T>(dst[2]) in call() 181 gridSplit(globPtr<typename MakeVec<T, 3>::type>(src), dstarr, stream); in call() [all …]
|
D | mul_spectrums.cu | 135 …gridTransformBinary(globPtr<float2>(src1), globPtr<float2>(src2), globPtr<float2>(dst), comlex_mul… in mulSpectrums() 137 …gridTransformBinary(globPtr<float2>(src1), globPtr<float2>(src2), globPtr<float2>(dst), comlex_mul… in mulSpectrums() 158 …gridTransformBinary(globPtr<float2>(src1), globPtr<float2>(src2), globPtr<float2>(dst), op, stream… in mulAndScaleSpectrums() 164 …gridTransformBinary(globPtr<float2>(src1), globPtr<float2>(src2), globPtr<float2>(dst), op, stream… in mulAndScaleSpectrums()
|
D | bitwise_mat.cu | 84 GlobPtrSz<uint> vsrc = globPtr((uint*) src.data, src.step, src.rows, vcols); in bitwise_not() 85 GlobPtrSz<uint> vdst = globPtr((uint*) dst.data, dst.step, src.rows, vcols); in bitwise_not() 93 GlobPtrSz<ushort> vsrc = globPtr((ushort*) src.data, src.step, src.rows, vcols); in bitwise_not() 94 GlobPtrSz<ushort> vdst = globPtr((ushort*) dst.data, dst.step, src.rows, vcols); in bitwise_not() 100 GlobPtrSz<uchar> vsrc = globPtr((uchar*) src.data, src.step, src.rows, bcols); in bitwise_not() 101 GlobPtrSz<uchar> vdst = globPtr((uchar*) dst.data, dst.step, src.rows, bcols); in bitwise_not() 110 … GlobPtrSz<uint> vsrc = globPtr((uint*) src.data, src.step, src.rows, src.cols * src.channels()); in bitwise_not() 111 … GlobPtrSz<uint> vdst = globPtr((uint*) dst.data, dst.step, src.rows, src.cols * src.channels()); in bitwise_not() 113 …gridTransformUnary(vsrc, vdst, bit_not<uint>(), singleMaskChannels(globPtr<uchar>(mask), src.chann… in bitwise_not() 117 …GlobPtrSz<ushort> vsrc = globPtr((ushort*) src.data, src.step, src.rows, src.cols * src.channels()… in bitwise_not() [all …]
|
D | threshold.cu | 80 …gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), thresh_binary_func(thr… in thresholdImpl() 83 …gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), thresh_binary_inv_func… in thresholdImpl() 86 …gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), thresh_trunc_func(thre… in thresholdImpl() 89 …gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), thresh_to_zero_func(th… in thresholdImpl() 92 …gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), thresh_to_zero_inv_fun… in thresholdImpl()
|
D | mul_mat.cu | 95 …gridTransformBinary_< TransformPolicy<S> >(globPtr<T>(src1), globPtr<T>(src2), globPtr<D>(dst), op… in mulMatImpl() 101 …gridTransformBinary_< TransformPolicy<S> >(globPtr<T>(src1), globPtr<T>(src2), globPtr<D>(dst), op… in mulMatImpl() 216 …gridTransformBinary(globPtr<uchar4>(src1), globPtr<float>(src2), globPtr<uchar4>(dst), MulOpSpecia… in mulMat_8uc4_32f() 221 …gridTransformBinary(globPtr<short4>(src1), globPtr<float>(src2), globPtr<short4>(dst), MulOpSpecia… in mulMat_16sc4_32f()
|
D | add_mat.cu | 71 …gridTransformBinary(globPtr<T>(src1), globPtr<T>(src2), globPtr<D>(dst), AddOp1<T, D>(), globPtr<u… in addMat_v1() 73 … gridTransformBinary(globPtr<T>(src1), globPtr<T>(src2), globPtr<D>(dst), AddOp1<T, D>(), stream); in addMat_v1() 88 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in addMat_v2() 89 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in addMat_v2() 90 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in addMat_v2() 107 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in addMat_v4() 108 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in addMat_v4() 109 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in addMat_v4()
|
D | sub_mat.cu | 71 …gridTransformBinary(globPtr<T>(src1), globPtr<T>(src2), globPtr<D>(dst), SubOp1<T, D>(), globPtr<u… in subMat_v1() 73 … gridTransformBinary(globPtr<T>(src1), globPtr<T>(src2), globPtr<D>(dst), SubOp1<T, D>(), stream); in subMat_v1() 88 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in subMat_v2() 89 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in subMat_v2() 90 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in subMat_v2() 107 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in subMat_v4() 108 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in subMat_v4() 109 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in subMat_v4()
|
D | copy_make_border.cu | 108 …gridCopy(remapPtr(brdConstant(globPtr<src_type>(src), brdVal), map), globPtr<src_type>(dst), strea… in copyMakeBorderImpl() 111 … gridCopy(remapPtr(brdReplicate(globPtr<src_type>(src)), map), globPtr<src_type>(dst), stream); in copyMakeBorderImpl() 114 … gridCopy(remapPtr(brdReflect(globPtr<src_type>(src)), map), globPtr<src_type>(dst), stream); in copyMakeBorderImpl() 117 … gridCopy(remapPtr(brdWrap(globPtr<src_type>(src)), map), globPtr<src_type>(dst), stream); in copyMakeBorderImpl() 120 … gridCopy(remapPtr(brdReflect101(globPtr<src_type>(src)), map), globPtr<src_type>(dst), stream); in copyMakeBorderImpl()
|
D | cmp_mat.cu | 82 …gridTransformBinary_< TransformPolicy<T> >(globPtr<T>(src1), globPtr<T>(src2), globPtr<uchar>(dst)… in cmpMat_v1() 118 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in cmpMatEq_v4() 119 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in cmpMatEq_v4() 120 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in cmpMatEq_v4() 128 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in cmpMatNe_v4() 129 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in cmpMatNe_v4() 130 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in cmpMatNe_v4() 138 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in cmpMatLt_v4() 139 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in cmpMatLt_v4() 140 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in cmpMatLt_v4() [all …]
|
D | div_mat.cu | 109 …gridTransformBinary_< TransformPolicy<S> >(globPtr<T>(src1), globPtr<T>(src2), globPtr<D>(dst), op… in divMatImpl() 115 …gridTransformBinary_< TransformPolicy<S> >(globPtr<T>(src1), globPtr<T>(src2), globPtr<D>(dst), op… in divMatImpl() 234 …gridTransformBinary(globPtr<uchar4>(src1), globPtr<float>(src2), globPtr<uchar4>(dst), DivOpSpecia… in divMat_8uc4_32f() 239 …gridTransformBinary(globPtr<short4>(src1), globPtr<float>(src2), globPtr<short4>(dst), DivOpSpecia… in divMat_16sc4_32f()
|
D | absdiff_mat.cu | 93 …gridTransformBinary_< TransformPolicy<T> >(globPtr<T>(src1), globPtr<T>(src2), globPtr<T>(dst), Ab… in absDiffMat_v1() 108 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in absDiffMat_v2() 109 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in absDiffMat_v2() 110 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in absDiffMat_v2() 127 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in absDiffMat_v4() 128 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in absDiffMat_v4() 129 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in absDiffMat_v4()
|
D | minmax_mat.cu | 67 gridTransformBinary(globPtr<T>(src1), globPtr<T>(src2), globPtr<T>(dst), Op<T>(), stream); in minMaxMat_v1() 91 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in minMaxMat_v2() 92 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in minMaxMat_v2() 93 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in minMaxMat_v2() 119 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in minMaxMat_v4() 120 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in minMaxMat_v4() 121 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in minMaxMat_v4() 206 …gridTransformUnary(globPtr<T>(src), globPtr<T>(dst), bind2nd(Op<T>(), cv::saturate_cast<T>(value))… in minMaxScalar()
|
D | math.cu | 80 …gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), abs_func<T>(), stream); in absMat() 125 … gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), SqrOp<T>(), stream); in sqrMat() 162 …gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), sqrt_func<T>(), stream… in sqrtMat() 208 … gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), ExpOp<T>(), stream); in expMat() 245 …gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), log_func<T>(), stream); in logMat() 327 gridTransformUnary_< TransformPolicy<T> >(globPtr<T>(src), globPtr<T>(dst), op, stream); in powMat()
|
D | sub_scalar.cu | 102 …TransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), op, … in subScalarImpl() 104 …gridTransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), … in subScalarImpl() 112 …TransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), op, … in subScalarImpl() 114 …gridTransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), … in subScalarImpl()
|
D | transpose.cu | 85 gridTranspose(globPtr<int>(src), globPtr<int>(dst), stream); in transpose() 89 gridTranspose(globPtr<double>(src), globPtr<double>(dst), stream); in transpose()
|
D | normalize.cu | 98 gridFindMinMaxVal(src, minMaxVals, globPtr<uchar>(mask), stream); in normalizeMinMax() 113 gridTransformUnary(src, dst, cvt, globPtr<uchar>(mask), stream); in normalizeMinMax() 155 gridCalcSum(abs_(cvt_<I>(src)), normVal, globPtr<uchar>(mask), stream); in normalizeNorm() 166 gridCalcSum(sqr_(cvt_<I>(src)), normVal, globPtr<uchar>(mask), stream); in normalizeNorm() 177 gridFindMaxVal(abs_(cvt_<I>(src)), normVal, globPtr<uchar>(mask), stream); in normalizeNorm() 194 gridTransformUnary(src, dst, cvt, globPtr<uchar>(mask), stream); in normalizeNorm() 210 gridTransformUnary(src, dst, cvt, globPtr<uchar>(mask), stream); in normalizeNorm()
|
D | add_scalar.cu | 90 …TransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), op, … in addScalarImpl() 92 …gridTransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), … in addScalarImpl()
|
D | absdiff_scalar.cu | 85 …gridTransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<SrcType>(dst), … in absDiffScalarImpl()
|
D | integral.cu | 71 gridIntegral(globPtr<uchar>(src), res, stream); in integral() 95 gridIntegral(sqr_(cvt_<int>(globPtr<uchar>(src))), res, stream); in sqrIntegral()
|
D | div_scalar.cu | 149 …gridTransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), … in divScalarImpl() 156 …gridTransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), … in divScalarImpl()
|
D | minmax.cu | 70 gridFindMinMaxVal(src, dst, globPtr<uchar>(mask), stream); in minMaxImpl() 154 gridFindMaxVal(abs_(src), dst, globPtr<uchar>(mask), stream); in findMaxAbsImpl()
|
D | sum.cu | 73 gridCalcSum(src, dst, globPtr<uchar>(mask), stream); in sumImpl() 88 gridCalcSum(abs_(cvt_<res_type>(src)), dst, globPtr<uchar>(mask), stream); in sumAbsImpl() 103 gridCalcSum(sqr_(cvt_<res_type>(src)), dst, globPtr<uchar>(mask), stream); in sumSqrImpl()
|
/external/opencv3/modules/cudacodec/src/cuda/ |
D | rgb_to_yv12.cu | 81 GlobPtr<uchar> y_plane = globPtr(dst.data, dst.step); in Gray_to_YV12() 82 GlobPtr<uchar> u_plane = globPtr(y_plane.data + planeSize, dst.step / 2); in Gray_to_YV12() 83 GlobPtr<uchar> v_plane = globPtr(u_plane.data + (planeSize / 4), dst.step / 2); in Gray_to_YV12() 118 GlobPtr<uchar> y_plane = globPtr(dst.data, dst.step); in RGB_to_YV12() 119 GlobPtr<uchar> u_plane = globPtr(y_plane.data + planeSize, dst.step / 2); in RGB_to_YV12() 120 GlobPtr<uchar> v_plane = globPtr(u_plane.data + (planeSize / 4), dst.step / 2); in RGB_to_YV12() 153 Gray_to_YV12<<<grid, block>>>(globPtr<uchar>(src), globPtr<uchar>(dst)); in RGB_to_YV12() 156 RGB_to_YV12<<<grid, block>>>(globPtr<uchar3>(src), globPtr<uchar>(dst)); in RGB_to_YV12() 159 RGB_to_YV12<<<grid, block>>>(globPtr<uchar4>(src), globPtr<uchar>(dst)); in RGB_to_YV12()
|
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/ |
D | glob.hpp | 91 __host__ __device__ GlobPtr<T> globPtr(T* data, size_t step) in globPtr() function 100 __host__ __device__ GlobPtrSz<T> globPtr(T* data, size_t step, int rows, int cols) in globPtr() function 111 __host__ GlobPtrSz<T> globPtr(const GpuMat& mat) in globPtr() function
|
/external/opencv3/modules/core/src/cuda/ |
D | gpu_mat.cu | 263 …icy<sizeof(typename VecTraits<T>::elem_type)> >(globPtr<T>(src), globPtr<T>(dst), identity<T>(), g… in copyWithMask() 321 …gridTransformUnary(constantPtr(VecTraits<T>::make(scalar.val), mat.rows, mat.cols), globPtr<T>(mat… in setToWithOutMask() 328 …Ptr(VecTraits<T>::make(scalar.val), mat.rows, mat.cols), globPtr<T>(mat), identity<T>(), globPtr<u… in setToWithMask() 440 …gridTransformUnary_< ConvertToPolicy<scalar_type> >(globPtr<T>(src), globPtr<D>(dst), saturate_cas… in convertToNoScale() 466 … gridTransformUnary_< ConvertToPolicy<scalar_type> >(globPtr<T>(src), globPtr<D>(dst), op, stream); in convertToScale()
|