Lines Matching full:cmpop
1562 compare_(const _Tp* src1, const _Tp* src2, uchar* dst, size_t total, int cmpop)
1565 switch( cmpop )
1598 compareS_(const _Tp* src1, _WTp value, uchar* dst, size_t total, int cmpop)
1601 switch( cmpop )
1633 void compare(const Mat& src1, const Mat& src2, Mat& dst, int cmpop)
1654 compare_((const uchar*)sptr1, (const uchar*)sptr2, dptr, total, cmpop);
1657 compare_((const schar*)sptr1, (const schar*)sptr2, dptr, total, cmpop);
1660 compare_((const ushort*)sptr1, (const ushort*)sptr2, dptr, total, cmpop);
1663 compare_((const short*)sptr1, (const short*)sptr2, dptr, total, cmpop);
1666 compare_((const int*)sptr1, (const int*)sptr2, dptr, total, cmpop);
1669 compare_((const float*)sptr1, (const float*)sptr2, dptr, total, cmpop);
1672 compare_((const double*)sptr1, (const double*)sptr2, dptr, total, cmpop);
1680 void compare(const Mat& src, double value, Mat& dst, int cmpop)
1701 compareS_((const uchar*)sptr, ivalue, dptr, total, cmpop);
1704 compareS_((const schar*)sptr, ivalue, dptr, total, cmpop);
1707 compareS_((const ushort*)sptr, ivalue, dptr, total, cmpop);
1710 compareS_((const short*)sptr, ivalue, dptr, total, cmpop);
1713 compareS_((const int*)sptr, ivalue, dptr, total, cmpop);
1716 compareS_((const float*)sptr, value, dptr, total, cmpop);
1719 compareS_((const double*)sptr, value, dptr, total, cmpop);