binder2nd         697 modules/core/include/opencv2/core/cuda/functional.hpp         __host__ __device__ __forceinline__ binder2nd(const Op& op_, const typename Op::second_argument_type& arg2_) : op(op_), arg2(arg2_) {}
binder2nd         705 modules/core/include/opencv2/core/cuda/functional.hpp         __host__ __device__ __forceinline__ binder2nd(const binder2nd& other) : op(other.op), arg2(other.arg2) {}
binder2nd         711 modules/core/include/opencv2/core/cuda/functional.hpp     template <typename Op, typename T> __host__ __device__ __forceinline__ binder2nd<Op> bind2nd(const Op& op, const T& x)
binder2nd         713 modules/core/include/opencv2/core/cuda/functional.hpp         return binder2nd<Op>(op, typename Op::second_argument_type(x));