Home
last modified time | relevance | path

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

/external/opencv3/modules/core/include/opencv2/core/cuda/
Dfunctional.hpp633 …template <typename Predicate> struct unary_negate : unary_function<typename Predicate::argument_ty… struct
635 explicit __host__ __device__ __forceinline__ unary_negate(const Predicate& p) : pred(p) {} in unary_negate() function
637 …ne__ bool operator()(typename TypeTraits<typename Predicate::argument_type>::ParameterType x) const in operator ()()
642 __host__ __device__ __forceinline__ unary_negate() {} in unary_negate() argument
643 … __host__ __device__ __forceinline__ unary_negate(const unary_negate& other) : pred(other.pred) {} in unary_negate() argument
645 Predicate pred;