binder1st         676 modules/core/include/opencv2/core/cuda/functional.hpp         __host__ __device__ __forceinline__ binder1st(const Op& op_, const typename Op::first_argument_type& arg1_) : op(op_), arg1(arg1_) {}
binder1st         684 modules/core/include/opencv2/core/cuda/functional.hpp         __host__ __device__ __forceinline__ binder1st(const binder1st& other) : op(other.op), arg1(other.arg1) {}
binder1st         690 modules/core/include/opencv2/core/cuda/functional.hpp     template <typename Op, typename T> __host__ __device__ __forceinline__ binder1st<Op> bind1st(const Op& op, const T& x)
binder1st         692 modules/core/include/opencv2/core/cuda/functional.hpp         return binder1st<Op>(op, typename Op::first_argument_type(x));