/external/opencv3/modules/cudaarithm/src/cuda/ |
D | absdiff_mat.cu | 109 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in absDiffMat_v2() local 112 gridTransformBinary(src1_, src2_, dst_, AbsDiffOp2(), stream); in absDiffMat_v2() 128 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in absDiffMat_v4() local 131 gridTransformBinary(src1_, src2_, dst_, AbsDiffOp4(), stream); in absDiffMat_v4() 154 GpuMat src2_ = src2.reshape(1); in absDiffMat() local 160 const intptr_t src2ptr = reinterpret_cast<intptr_t>(src2_.data); in absDiffMat() 169 absDiffMat_v4(src1_, src2_, dst_, stream); in absDiffMat() 174 absDiffMat_v2(src1_, src2_, dst_, stream); in absDiffMat() 185 func(src1_, src2_, dst_, stream); in absDiffMat()
|
D | cmp_mat.cu | 119 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in cmpMatEq_v4() local 122 gridTransformBinary(src1_, src2_, dst_, VCmpEq4(), stream); in cmpMatEq_v4() 129 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in cmpMatNe_v4() local 132 gridTransformBinary(src1_, src2_, dst_, VCmpNe4(), stream); in cmpMatNe_v4() 139 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in cmpMatLt_v4() local 142 gridTransformBinary(src1_, src2_, dst_, VCmpLt4(), stream); in cmpMatLt_v4() 149 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in cmpMatLe_v4() local 152 gridTransformBinary(src1_, src2_, dst_, VCmpLe4(), stream); in cmpMatLe_v4() 196 GpuMat src2_ = psrc2[cmpop]->reshape(1); in cmpMat() local 202 const intptr_t src2ptr = reinterpret_cast<intptr_t>(src2_.data); in cmpMat() [all …]
|
D | add_mat.cu | 89 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in addMat_v2() local 92 gridTransformBinary(src1_, src2_, dst_, AddOp2(), stream); in addMat_v2() 108 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in addMat_v4() local 111 gridTransformBinary(src1_, src2_, dst_, AddOp4(), stream); in addMat_v4() 191 GpuMat src2_ = src2.reshape(1); in addMat() local 197 const intptr_t src2ptr = reinterpret_cast<intptr_t>(src2_.data); in addMat() 206 addMat_v4(src1_, src2_, dst_, stream); in addMat() 211 addMat_v2(src1_, src2_, dst_, stream); in addMat() 222 func(src1_, src2_, dst_, mask, stream); in addMat()
|
D | sub_mat.cu | 89 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in subMat_v2() local 92 gridTransformBinary(src1_, src2_, dst_, SubOp2(), stream); in subMat_v2() 108 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in subMat_v4() local 111 gridTransformBinary(src1_, src2_, dst_, SubOp4(), stream); in subMat_v4() 191 GpuMat src2_ = src2.reshape(1); in subMat() local 197 const intptr_t src2ptr = reinterpret_cast<intptr_t>(src2_.data); in subMat() 206 subMat_v4(src1_, src2_, dst_, stream); in subMat() 211 subMat_v2(src1_, src2_, dst_, stream); in subMat() 222 func(src1_, src2_, dst_, mask, stream); in subMat()
|
D | minmax_mat.cu | 92 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in minMaxMat_v2() local 95 gridTransformBinary(src1_, src2_, dst_, Op2(), stream); in minMaxMat_v2() 120 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols); in minMaxMat_v4() local 123 gridTransformBinary(src1_, src2_, dst_, Op4(), stream); in minMaxMat_v4() 167 GpuMat src2_ = src2.reshape(1); in minMaxMat() local 173 const intptr_t src2ptr = reinterpret_cast<intptr_t>(src2_.data); in minMaxMat() 182 funcs_v4[op](src1_, src2_, dst_, stream); in minMaxMat() 187 funcs_v2[op](src1_, src2_, dst_, stream); in minMaxMat() 195 func(src1_, src2_, dst_, stream); in minMaxMat()
|
D | mul_mat.cu | 182 GpuMat src2_ = src2.reshape(1); in mulMat() local 190 func(src1_, src2_, dst_, scale, stream); in mulMat()
|
D | div_mat.cu | 196 GpuMat src2_ = src2.reshape(1); in divMat() local 204 func(src1_, src2_, dst_, scale, stream); in divMat()
|
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/ |
D | transform_detail.hpp | 256 …static __global__ void transformSmart(const PtrStepSz<T1> src1_, const PtrStep<T2> src2_, PtrStep<… in transformSmart() argument 271 const T2* src2 = src2_.ptr(y); in transformSmart()
|
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/ |
D | transform.hpp | 220 …__global__ void transformSmart(const GlobPtr<SrcType1> src1_, const GlobPtr<SrcType2> src2_, GlobP… in transformSmart() argument 233 const SrcType2* src2 = src2_.row(y); in transformSmart()
|