Home
last modified time | relevance | path

Searched defs:binary_negate (Results 1 – 1 of 1) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/cuda/
Dfunctional.hpp653 …template <typename Predicate> struct binary_negate : binary_function<typename Predicate::first_arg… struct
655 explicit __host__ __device__ __forceinline__ binary_negate(const Predicate& p) : pred(p) {} in binary_negate() argument
657 …ne__ bool operator()(typename TypeTraits<typename Predicate::first_argument_type>::ParameterType x, in operator ()()
663 __host__ __device__ __forceinline__ binary_negate() {} in binary_negate() argument
664 …__host__ __device__ __forceinline__ binary_negate(const binary_negate& other) : pred(other.pred) {} in binary_negate() function
666 Predicate pred;