Searched refs:CMP_GE (Results 1 – 13 of 13) sorted by relevance
/external/opencv3/modules/core/perf/ |
D | perf_compare.cpp | 9 CV_ENUM(CmpType, CMP_EQ, CMP_GT, CMP_GE, CMP_LT, CMP_LE, CMP_NE)
|
/external/deqp/framework/randomshaders/ |
D | rsgToken.hpp | 98 CMP_GE, enumerator
|
D | rsgBinaryOps.cpp | 609 : GreaterOrEqualBase(state, Token::CMP_GE, valueRange) in GreaterOrEqualOp()
|
/external/opencv3/modules/cudaarithm/src/cuda/ |
D | cmp_scalar.cu | 213 cmpop = cmpop == cv::CMP_LT ? cv::CMP_GT : cmpop == cv::CMP_LE ? cv::CMP_GE : in cmpScalar() 214 cmpop == cv::CMP_GE ? cv::CMP_LE : cmpop == cv::CMP_GT ? cv::CMP_LT : cmpop; in cmpScalar()
|
/external/opencv3/modules/core/src/ |
D | arithm.cpp | 4492 if( code == CMP_GE || code == CMP_LT ) in cmp_() 4496 code = code == CMP_GE ? CMP_LE : CMP_GT; in cmp_() 4552 _cmpop == CMP_GE ? ippCmpGreaterEq : in convert_cmp() 4582 if( code == CMP_GE || code == CMP_LT ) in cmp8u() 4586 code = code == CMP_GE ? CMP_LE : CMP_GT; in cmp8u() 4712 if( code == CMP_GE || code == CMP_LT ) in cmp16s() 4716 code = code == CMP_GE ? CMP_LE : CMP_GT; in cmp16s() 4945 … return dst.setTo(Scalar::all(op == CMP_GT || op == CMP_GE || op == CMP_NE ? 255 : 0)), true; in ocl_compare() 4953 if( op == CMP_LT || op == CMP_GE ) in ocl_compare() 4988 op == CMP_NE || op == CMP_GE || op == CMP_GT ); in compare() [all …]
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | base.hpp | 182 CMP_GE = 2, //!< src1 is greater than or equal to src2. enumerator
|
/external/opencv3/modules/core/perf/opencl/ |
D | perf_arithm.cpp | 553 CV_ENUM(CmpCode, CMP_LT, CMP_LE, CMP_EQ, CMP_NE, CMP_GE, CMP_GT)
|
/external/opencv3/modules/cudaarithm/perf/ |
D | perf_element_operations.cpp | 632 CV_ENUM(CmpCode, cv::CMP_EQ, cv::CMP_GT, cv::CMP_GE, cv::CMP_LT, cv::CMP_LE, cv::CMP_NE)
|
/external/opencv3/modules/cudaarithm/test/ |
D | test_element_operations.cpp | 1835 CV_ENUM(CmpCode, cv::CMP_EQ, cv::CMP_GT, cv::CMP_GE, cv::CMP_LT, cv::CMP_LE, cv::CMP_NE) in CV_ENUM() argument 1836 …pCode(cv::CMP_EQ), CmpCode(cv::CMP_NE), CmpCode(cv::CMP_GT), CmpCode(cv::CMP_GE), CmpCode(cv::CMP_… in CV_ENUM()
|
/external/opencv3/modules/java/src/ |
D | core+Core.java | 126 CMP_GE = 2, field in Core
|
/external/opencv3/modules/ts/src/ |
D | ts_func.cpp | 1583 case CMP_GE: in compare_() 1619 case CMP_GE: in compareS_()
|
/external/opencv3/modules/core/test/ocl/ |
D | test_arithm.cpp | 780 static const int cmp_codes[] = { CMP_EQ, CMP_GT, CMP_GE, CMP_LT, CMP_LE, CMP_NE };
|
/external/opencv3/modules/core/misc/java/test/ |
D | CoreTest.java | 224 Core.compare(gray0, grayRnd, dst, Core.CMP_GE); in testCompare()
|