Home | History | Annotate | Download | only in test

Lines Matching refs:LogicOp

278 struct LogicOp : public BaseElemWiseOp
280 LogicOp(char _opcode) : BaseElemWiseOp(2, FIX_ALPHA+FIX_BETA+FIX_GAMMA+SUPPORT_MASK, 1, 1, Scalar::all(0)), opcode(_opcode) {}
295 cvtest::logicOp(src[0], src[1], temp, opcode);
299 cvtest::logicOp(src[0], src[1], dst, opcode);
328 cvtest::logicOp(src[0], gamma, temp, opcode);
332 cvtest::logicOp(src[0], gamma, dst, opcode);
1387 INSTANTIATE_TEST_CASE_P(Core_And, ElemWiseTest, ::testing::Values(ElemWiseOpPtr(new cvtest::LogicOp('&'))));
1389 INSTANTIATE_TEST_CASE_P(Core_Or, ElemWiseTest, ::testing::Values(ElemWiseOpPtr(new cvtest::LogicOp('|'))));
1391 INSTANTIATE_TEST_CASE_P(Core_Xor, ElemWiseTest, ::testing::Values(ElemWiseOpPtr(new cvtest::LogicOp('^'))));