Searched refs:CmpType (Results 1 – 2 of 2) 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) 11 typedef std::tr1::tuple<Size, MatType, CmpType> Size_MatType_CmpType_t; 18 CmpType::all() in PERF_TEST_P() 24 CmpType cmpType = get<2>(GetParam()); in PERF_TEST_P() 41 CmpType::all() in PERF_TEST_P() 47 CmpType cmpType = get<2>(GetParam()); in PERF_TEST_P()
|
/external/llvm/lib/Fuzzer/ |
D | FuzzerTraceState.cpp | 115 bool ComputeCmp(size_t CmpType, U Arg1, U Arg2) { in ComputeCmp() argument 116 switch(CmpType) { in ComputeCmp() 132 static bool ComputeCmp(size_t CmpSize, size_t CmpType, uint64_t Arg1, in ComputeCmp() argument 134 if (CmpSize == 8) return ComputeCmp<uint64_t, int64_t>(CmpType, Arg1, Arg2); in ComputeCmp() 135 if (CmpSize == 4) return ComputeCmp<uint32_t, int32_t>(CmpType, Arg1, Arg2); in ComputeCmp() 136 if (CmpSize == 2) return ComputeCmp<uint16_t, int16_t>(CmpType, Arg1, Arg2); in ComputeCmp() 137 if (CmpSize == 1) return ComputeCmp<uint8_t, int8_t>(CmpType, Arg1, Arg2); in ComputeCmp() 139 if (CmpType == ICMP_EQ) return Arg1 == Arg2; in ComputeCmp() 179 void DFSanCmpCallback(uintptr_t PC, size_t CmpSize, size_t CmpType, 184 void TraceCmpCallback(uintptr_t PC, size_t CmpSize, size_t CmpType, [all …]
|