Home | History | Annotate | Download | only in cuda

Lines Matching refs:SrcType

107     template <typename SrcType, typename ScalarType, typename DstType> struct DivScalarOp : unary_function<SrcType, DstType>
111 __device__ __forceinline__ DstType operator ()(SrcType a) const
117 template <typename SrcType, typename ScalarType, typename DstType> struct DivScalarOpInv : unary_function<SrcType, DstType>
121 __device__ __forceinline__ DstType operator ()(SrcType a) const
137 template <typename SrcType, typename ScalarDepth, typename DstType>
140 typedef typename MakeVec<ScalarDepth, VecTraits<SrcType>::cn>::type ScalarType;
146 DivScalarOpInv<SrcType, ScalarType, DstType> op;
149 gridTransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), op, stream);
153 DivScalarOp<SrcType, ScalarType, DstType> op;
156 gridTransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), op, stream);