Home | History | Annotate | Download | only in unit

Lines Matching defs:v2

42   int v2[6] = { 0, 1, 2, 3, 4, 5 };
49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2);
50 CPPUNIT_ASSERT(location != v2 + 6);
51 CPPUNIT_ASSERT(location - v2 == 3);
58 IntVec v2(3);
59 __iota(v2.begin(), v2.end(), 50);
62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end());
66 __iota(v2.begin(), v2.end(), 4);
68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end());