Home
last modified time | relevance | path

Searched refs:_Tpuvec (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
769 inline _Tpuvec operator == (const _Tpuvec& a, const _Tpuvec& b) \
770 { return _Tpuvec(_mm_cmpeq_##suffix(a.val, b.val)); } \
771 inline _Tpuvec operator != (const _Tpuvec& a, const _Tpuvec& b) \
774 return _Tpuvec(_mm_xor_si128(_mm_cmpeq_##suffix(a.val, b.val), not_mask)); \
783 inline _Tpuvec operator < (const _Tpuvec& a, const _Tpuvec& b) \
786 return _Tpuvec(_mm_cmpgt_##suffix(_mm_xor_si128(b.val, smask), _mm_xor_si128(a.val, smask))); \
788 inline _Tpuvec operator > (const _Tpuvec& a, const _Tpuvec& b) \
791 return _Tpuvec(_mm_cmpgt_##suffix(_mm_xor_si128(a.val, smask), _mm_xor_si128(b.val, smask))); \
793 inline _Tpuvec operator <= (const _Tpuvec& a, const _Tpuvec& b) \
[all …]