Home
last modified time | relevance | path

Searched refs:_Tpsvec (Results 1 – 1 of 1) sorted by relevance

/external/opencv3/modules/hal/include/opencv2/hal/
Dintrin_sse.hpp768 #define OPENCV_HAL_IMPL_SSE_INT_CMP_OP(_Tpuvec, _Tpsvec, suffix, sbit) \ argument
776 inline _Tpsvec operator == (const _Tpsvec& a, const _Tpsvec& b) \
777 { return _Tpsvec(_mm_cmpeq_##suffix(a.val, b.val)); } \
778 inline _Tpsvec operator != (const _Tpsvec& a, const _Tpsvec& b) \
781 return _Tpsvec(_mm_xor_si128(_mm_cmpeq_##suffix(a.val, b.val), not_mask)); \
807 inline _Tpsvec operator < (const _Tpsvec& a, const _Tpsvec& b) \
809 return _Tpsvec(_mm_cmpgt_##suffix(b.val, a.val)); \
811 inline _Tpsvec operator > (const _Tpsvec& a, const _Tpsvec& b) \
813 return _Tpsvec(_mm_cmpgt_##suffix(a.val, b.val)); \
815 inline _Tpsvec operator <= (const _Tpsvec& a, const _Tpsvec& b) \
[all …]