Lines Matching refs:p1

1676         C2Param *p1 = C2Param::From(videoWidth, sizeof(videoWidth));  in TEST_F()  local
1677 EXPECT_NE(p1, nullptr); in TEST_F()
1678 EXPECT_EQ(12u, p1->size()); in TEST_F()
1679 EXPECT_EQ(p1->type(), C2NumberStreamTuning::output::PARAM_TYPE); in TEST_F()
1681 p1 = C2Param::From(videoWidth, sizeof(videoWidth) + 2); in TEST_F()
1682 EXPECT_EQ(p1, nullptr); in TEST_F()
1684 p1 = C2Param::From(videoWidth, sizeof(videoWidth) - 2); in TEST_F()
1685 EXPECT_EQ(p1, nullptr); in TEST_F()
1687 p1 = C2Param::From(videoWidth, 3); in TEST_F()
1688 EXPECT_EQ(p1, nullptr); in TEST_F()
1690 p1 = C2Param::From(videoWidth, 0); in TEST_F()
1691 EXPECT_EQ(p1, nullptr); in TEST_F()
2375 C2Param *p1 = C2Param::From(videoWidth, sizeof(videoWidth)); in TEST_F() local
2376 EXPECT_NE(nullptr, p1); in TEST_F()
2377 EXPECT_EQ(12u, p1->size()); in TEST_F()
2378 EXPECT_EQ(p1->type(), C2NumbersStreamTuning::output::PARAM_TYPE); in TEST_F()
2380 C2NumbersStreamTuning::output *vst = C2NumbersStreamTuning::output::From(p1); in TEST_F()
2387 p1 = C2Param::From(videoWidth, sizeof(videoWidth) + 2); in TEST_F()
2388 EXPECT_EQ(nullptr, p1); in TEST_F()
2390 p1 = C2Param::From(videoWidth, sizeof(videoWidth) - 2); in TEST_F()
2391 EXPECT_EQ(nullptr, p1); in TEST_F()
2393 p1 = C2Param::From(videoWidth, 3); in TEST_F()
2394 EXPECT_EQ(nullptr, p1); in TEST_F()
2396 p1 = C2Param::From(videoWidth, 0); in TEST_F()
2397 EXPECT_EQ(nullptr, p1); in TEST_F()
2403 C2Param *p1 = C2Param::From(videoWidth, sizeof(videoWidth)); in TEST_F() local
2404 EXPECT_NE(nullptr, p1); in TEST_F()
2405 EXPECT_EQ(16u, p1->size()); in TEST_F()
2406 EXPECT_EQ(p1->type(), C2NumbersPortTuning::input::PARAM_TYPE); in TEST_F()
2408 C2NumbersPortTuning::input *vpt = C2NumbersPortTuning::input::From(p1); in TEST_F()
2416 p1 = C2Param::From(videoWidth, sizeof(videoWidth) + 2); in TEST_F()
2417 EXPECT_EQ(nullptr, p1); in TEST_F()
2419 p1 = C2Param::From(videoWidth, sizeof(videoWidth) - 2); in TEST_F()
2420 EXPECT_EQ(nullptr, p1); in TEST_F()
2422 p1 = C2Param::From(videoWidth, 3); in TEST_F()
2423 EXPECT_EQ(nullptr, p1); in TEST_F()
2425 p1 = C2Param::From(videoWidth, 0); in TEST_F()
2426 EXPECT_EQ(nullptr, p1); in TEST_F()