HomeSort by relevance Sort by last modified time
    Searched defs:v2 (Results 26 - 50 of 164) sorted by null

12 3 4 5 6 7

  /external/stlport/test/unit/
search_test.cpp 42 int v2[6] = { 0, 1, 2, 3, 4, 5 }; local
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())
    [all...]
setdiff_test.cpp 46 int v2[4] = { 10, 13, 17, 23 }; local
49 set_symmetric_difference((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
60 vector<int> v2(10);
61 __iota(v2.begin(), v2.end(), 7);
64 set_symmetric_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
90 int v2[4] = { 10, 13, 17, 23 }; local
95 set_difference((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result)
    [all...]
swap_test.cpp 91 queue<Obj> v2; local
98 v2.push( Obj() );
99 v2.back().v = 10;
100 v2.push( Obj() );
101 v2.back().v = 11;
102 v2.push( Obj() );
103 v2.back().v = 12;
106 CPPUNIT_CHECK( v2.size() == 3 );
108 swap( v1, v2 ); // this shouldn't try make it as v1.swap( v2 ), no queue::swap method
134 vector<Obj> v2; local
    [all...]
mvctor_traits_test.cpp 126 vector<MovableStruct> v2 = vect; local
134 vect.insert(vect.begin() + 2, v2.begin(), v2.end() );
180 //vect with 3 elements and v2 with 4 elements are now out of scope
226 vector<CompleteMovableStruct> v2 = vect; local
234 vect.insert(vect.begin() + 2, v2.begin(), v2.end());
278 //vect with 3 elements and v2 with 4 elements are now out of scope
457 //deq with 3 elements and v2 with 4 elements are now out of scope
  /external/valgrind/main/none/tests/x86-linux/
sigcontext.c 47 int v2, v3, v4; local
67 : "=a" (ret), "=d" (v2), "=S" (v3), "=D" (v4)
69 printf("v2=%x v3=%x v4=%x\n", v2, v3, v4);
82 : "=a" (ret), "=d" (v2), "=S" (v3), "=D" (v4)
84 printf("v2=%x v3=%x v4=%x\n", v2, v3, v4);
  /frameworks/compile/libbcc/tests/data/src/
addressOf.c 14 float *v2 = &s[index].x; local
15 printf("testStruct: %g %g %g\n",base.x, *v, *v2);
  /ndk/tests/device/test-gnustl-full/unit/
copy_test.cpp 90 vector<int> v2(v1.size());
91 copy(v1.begin(), v1.end(), v2.begin());
93 CPPUNIT_ASSERT( v2 == v1 );
100 vector<int> v2; local
101 insert_iterator<vector<int> > i(v2, v2.begin());
104 CPPUNIT_ASSERT( v2 == v1 );
112 vector<int> v2(v1.size());
113 copy_backward(v1.begin(), v1.end(), v2.end());
115 CPPUNIT_ASSERT( v2 == v1 )
    [all...]
search_test.cpp 42 int v2[6] = { 0, 1, 2, 3, 4, 5 }; local
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())
    [all...]
setdiff_test.cpp 46 int v2[4] = { 10, 13, 17, 23 }; local
49 set_symmetric_difference((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
60 vector<int> v2(10);
61 __iota(v2.begin(), v2.end(), 7);
64 set_symmetric_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
90 int v2[4] = { 10, 13, 17, 23 }; local
95 set_difference((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result)
    [all...]
swap_test.cpp 91 queue<Obj> v2; local
98 v2.push( Obj() );
99 v2.back().v = 10;
100 v2.push( Obj() );
101 v2.back().v = 11;
102 v2.push( Obj() );
103 v2.back().v = 12;
106 CPPUNIT_CHECK( v2.size() == 3 );
108 swap( v1, v2 ); // this shouldn't try make it as v1.swap( v2 ), no queue::swap method
134 vector<Obj> v2; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
copy_test.cpp 90 vector<int> v2(v1.size());
91 copy(v1.begin(), v1.end(), v2.begin());
93 CPPUNIT_ASSERT( v2 == v1 );
100 vector<int> v2; local
101 insert_iterator<vector<int> > i(v2, v2.begin());
104 CPPUNIT_ASSERT( v2 == v1 );
112 vector<int> v2(v1.size());
113 copy_backward(v1.begin(), v1.end(), v2.end());
115 CPPUNIT_ASSERT( v2 == v1 )
    [all...]
search_test.cpp 42 int v2[6] = { 0, 1, 2, 3, 4, 5 }; local
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())
    [all...]
setdiff_test.cpp 46 int v2[4] = { 10, 13, 17, 23 }; local
49 set_symmetric_difference((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
60 vector<int> v2(10);
61 __iota(v2.begin(), v2.end(), 7);
64 set_symmetric_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
90 int v2[4] = { 10, 13, 17, 23 }; local
95 set_difference((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result)
    [all...]
swap_test.cpp 91 queue<Obj> v2; local
98 v2.push( Obj() );
99 v2.back().v = 10;
100 v2.push( Obj() );
101 v2.back().v = 11;
102 v2.push( Obj() );
103 v2.back().v = 12;
106 CPPUNIT_CHECK( v2.size() == 3 );
108 swap( v1, v2 ); // this shouldn't try make it as v1.swap( v2 ), no queue::swap method
134 vector<Obj> v2; local
    [all...]
  /cts/apps/CtsVerifier/jni/audioquality/
OverflowCheck.cpp 90 int v2 = data[i+1]; local
95 int diff = v2 - v1;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p7.cpp 8 auto *p2 = 0, v2 = *p2; // expected-error {{incompatible initializer}} local
  /external/clang/test/Sema/
declspec.c 22 __restrict__ f* v2; // expected-error {{restrict requires a pointer or reference ('f' (aka 'int (void)') is invalid)}} variable
  /frameworks/base/tools/layoutlib/bridge/tests/src/android/graphics/
Matrix_DelegateTest.java 50 float[] v2 = new float[9]; local
52 m2.getValues(v2);
55 assertEquals(v1[i], v2[i]);
  /cts/tests/tests/view/src/android/view/cts/
ViewDebugTest.java 103 View v2 = new View(getContext()); local
110 ViewDebug.trace(v2, HierarchyTraceType.INVALIDATE);
  /external/android-mock/tests/com/google/android/testing/mocking/
ConstructorCreationTests.java 44 public double v2; field in class:ConstructorCreationTests.TestClass
59 public TestClass(int v1, float v2) {
61 this.v2 = v2;
65 public TestClass(int v1, double v2) {
67 this.v2 = (int) v2;
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 210 struct V2 : virtual V1 {
211 int v2; member in struct:Test3::V2
232 // CHECK-7-NEXT: -- (Test3::V2, 32) vtable address --
236 // CHECK-8: Construction vtable for ('Test3::V2', 32) in 'Test3::C' (9 entries).
240 // CHECK-8-NEXT: 3 | Test3::V2 RTTI
241 // CHECK-8-NEXT: -- (Test3::V2, 32) vtable address --
242 // CHECK-8-NEXT: 4 | void Test3::V2::f()
245 // CHECK-8-NEXT: 7 | Test3::V2 RTTI
247 // CHECK-8-NEXT: 8 | void Test3::V2::f()
249 struct C : virtual V1, virtual V2 {
    [all...]
  /external/harfbuzz/contrib/
harfbuzz-unicode.c 22 const uint16_t v2 = chars[(*iter)++]; local
23 if (!HB_IsLowSurrogate(v2)) {
28 return HB_SurrogateToUcs4(v, v2);
48 const uint16_t v2 = chars[(*iter)--]; local
49 if (!HB_IsHighSurrogate(v2)) {
54 return HB_SurrogateToUcs4(v2, v);
  /external/skia/src/animator/
SkOperandIterpolator.cpp 120 SkOperand v1[3], v2[3], v[3], vv[3]; local
124 inter.setKeyFrame(1, 200, iset(v2, 110, 220, 330));
140 SkASSERT(memcmp(v, v2, sizeof(v)) == 0);
144 SkASSERT(memcmp(v, v2, sizeof(v)) == 0);
  /external/webkit/LayoutTests/fast/js/resources/
codegen-temporaries-multiple-global-blocks-1.js 9 v2 = { a: 0 };
codegen-temporaries-multiple-global-blocks-2.js 10 var v2 = o2; variable
11 v2.a = assign2();

Completed in 787 milliseconds

12 3 4 5 6 7