Lines Matching refs:streamInfo
798 C2InfoBuffer streamInfo = info.asStream(false /* output */, 1u); in TEST_F() local
799 ASSERT_EQ(kParamIndexNumber1, streamInfo.index().coreIndex()); in TEST_F()
800 ASSERT_TRUE(streamInfo.index().forStream()); in TEST_F()
801 ASSERT_TRUE(streamInfo.index().forInput()); in TEST_F()
802 ASSERT_EQ(1u, streamInfo.index().stream()); in TEST_F()
803 ASSERT_EQ(C2Param::INFO, streamInfo.index().kind()); in TEST_F()
804 ASSERT_EQ(C2BufferData::LINEAR, streamInfo.data().type()); in TEST_F()
805 ASSERT_EQ(1024, streamInfo.data().linearBlocks()[0].offset()); in TEST_F()
806 ASSERT_EQ(kCapacity / 2, streamInfo.data().linearBlocks()[0].size()); in TEST_F()
808 ASSERT_EQ(linearBlock->handle(), streamInfo.data().linearBlocks()[0].handle()); in TEST_F()
809 ASSERT_EQ(linearPool->getAllocatorId(), streamInfo.data().linearBlocks()[0].getAllocatorId()); in TEST_F()
811 C2InfoBuffer portInfo = streamInfo.asPort(true /* output */); in TEST_F()