HomeSort by relevance Sort by last modified time
    Searched defs:v1 (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/stlport/test/unit/
fib.h 6 Fibonacci() : v1(0), v2(1) {}
9 int v1; member in class:Fibonacci
16 int r = v1 + v2;
17 v1 = v2;
19 return v1;
perm_test.cpp 44 int v1[3] = { 0, 1, 2 }; local
45 prev_permutation(v1, v1 + 3);
47 CPPUNIT_ASSERT(v1[0]==2);
48 CPPUNIT_ASSERT(v1[1]==1);
49 CPPUNIT_ASSERT(v1[2]==0);
53 vector <int> v1(3);
54 __iota(v1.begin(), v1.end(), 0);
56 prev_permutation(v1.begin(), v1.end())
137 int v1[3] = { 0, 1, 2 }; local
    [all...]
setinter_test.cpp 39 int v1[3] = { 13, 18, 23 }; local
43 set_intersection((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
53 vector <int> v1(10);
54 __iota(v1.begin(), v1.end(), 0);
59 set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(inter));
setunion_test.cpp 39 int v1[3] = { 13, 18, 23 }; local
43 set_union((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
56 vector <int> v1(10);
57 __iota(v1.begin(), v1.end(), 0);
62 set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
search_test.cpp 41 int v1[6] = { 1, 1, 2, 3, 5, 8 }; local
46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2);
47 CPPUNIT_ASSERT(location == v1 + 6);
56 IntVec v1(10);
57 __iota(v1.begin(), v1.end(), 0);
62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end());
64 CPPUNIT_ASSERT(location == v1.end())
    [all...]
setdiff_test.cpp 45 int v1[3] = { 13, 18, 23 }; local
49 set_symmetric_difference((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
58 vector<int> v1(10);
59 __iota(v1.begin(), v1.end(), 0);
64 set_symmetric_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
89 int v1[3] = { 13, 18, 23 }; local
95 set_difference((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result)
    [all...]
swap_test.cpp 90 queue<Obj> v1; local
93 v1.push( Obj() );
94 v1.back().v = -1;
95 v1.push( Obj() );
96 v1.back().v = -2;
105 CPPUNIT_CHECK( v1.size() == 2 );
108 swap( v1, v2 ); // this shouldn't try make it as v1.swap( v2 ), no queue::swap method!
110 CPPUNIT_CHECK( v1.size() == 3 );
114 CPPUNIT_CHECK( v1.front().v == 1 || v1.front().v == 2 )
133 vector<Obj> v1; local
    [all...]
iter_test.cpp 113 vector<int> v1(6);
114 __iota(v1.begin(), v1.end(), 0);
115 iter_swap( v1.begin(), v1.begin() + 3 );
117 CPPUNIT_ASSERT(v1[0]==3);
118 CPPUNIT_ASSERT(v1[1]==1);
119 CPPUNIT_ASSERT(v1[2]==2);
120 CPPUNIT_ASSERT(v1[3]==0);
121 CPPUNIT_ASSERT(v1[4]==4)
136 bool v1 = *i2; local
    [all...]
  /external/openssl/crypto/des/
cfb64enc.c 70 register DES_LONG v0,v1; local
84 c2l(iv,v1); ti[1]=v1;
104 c2l(iv,v1); ti[1]=v1;
118 v0=v1=ti[0]=ti[1]=c=cc=0;
cfb64ede.c 72 register DES_LONG v0,v1; local
86 c2l(iv,v1);
89 ti[1]=v1;
92 v1=ti[1];
96 l2c(v1,iv);
112 c2l(iv,v1);
115 ti[1]=v1;
118 v1=ti[1];
122 l2c(v1,iv);
132 v0=v1=ti[0]=ti[1]=c=cc=0
154 register DES_LONG d0,d1,v0,v1; local
    [all...]
cfb_enc.c 75 register DES_LONG d0,d1,v0,v1; local
95 c2l(iv,v1);
102 ti[1]=v1;
113 { v0=v1; v1=d0; }
115 { v0=d0; v1=d1; }
121 l2c(v1,iv);
125 sh[0]=v0, sh[1]=v1, sh[2]=d0, sh[3]=d1;
134 v0=sh[0], v1=sh[1];
138 c2l(iv,v1);
    [all...]
ofb64ede.c 71 register DES_LONG v0,v1; local
82 c2l(iv,v1);
84 ti[1]=v1;
87 l2c(v1,dp);
93 /* ti[1]=v1; */
96 v1=ti[1];
100 l2c(v1,dp);
109 v1=ti[1];*/
112 l2c(v1,iv);
114 v0=v1=ti[0]=ti[1]=0
    [all...]
ofb64enc.c 69 register DES_LONG v0,v1,t; local
80 c2l(iv,v1);
82 ti[1]=v1;
85 l2c(v1,dp);
102 v1=ti[1];
105 l2c(v1,iv);
107 t=v0=v1=ti[0]=ti[1]=0;
ofb_enc.c 71 register DES_LONG d0,d1,vv0,vv1,v0,v1,n=(numbits+7)/8; local
98 c2l(iv,v1);
100 ti[1]=v1;
104 ti[1]=v1;
116 { v0=v1; v1=vv0; }
118 { v0=vv0; v1=vv1; }
121 v0=((v1>>(num-32))|(vv0<<(64-num)))&0xffffffffL;
122 v1=((vv0>>(num-32))|(vv1<<(64-num)))&0xffffffffL;
126 v0=((v0>>num)|(v1<<(32-num)))&0xffffffffL
    [all...]
  /external/openssl/crypto/rc2/
rc2cfb64.c 71 register unsigned long v0,v1,t; local
85 c2l(iv,v1); ti[1]=v1;
105 c2l(iv,v1); ti[1]=v1;
119 v0=v1=ti[0]=ti[1]=t=c=cc=0;
rc2ofb64.c 70 register unsigned long v0,v1,t; local
81 c2l(iv,v1);
83 ti[1]=v1;
86 l2c(v1,dp);
103 v1=ti[1];
106 l2c(v1,iv);
108 t=v0=v1=ti[0]=ti[1]=0;
  /cts/tests/tests/view/src/android/view/cts/
View_FocusHandlingTest.java 145 View v1 = activity.findViewById(R.id.view1); local
150 assertNotNull(v1);
156 assertFalse(v1.isFocusable());
161 v1.setFocusable(true);
166 assertTrue(v1.isFocusable());
171 v1.setNextFocusRightId(R.id.view2);
172 v1.setNextFocusDownId(R.id.view3);
184 assertEquals(R.id.view2, v1.getNextFocusRightId());
185 assertEquals(R.id.view3, v1.getNextFocusDownId());
197 assertSame(v2, v1.focusSearch(View.FOCUS_RIGHT))
    [all...]
ViewDebugTest.java 102 View v1 = new View(getContext()); local
109 ViewDebug.startHierarchyTracing(hierarchyTracePrefix, v1);
  /dalvik/libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserException.java 4 package org.xmlpull.v1;
XmlSerializer.java 1 package org.xmlpull.v1;
40 * <a href="http://www.xmlpull.org/v1/doc/features.html">
41 * http://www.xmlpull.org/v1/doc/features.html</a>.
68 * <a href="http://www.xmlpull.org/v1/doc/properties.html">
69 * http://www.xmlpull.org/v1/doc/properties.html</a>.
  /external/dropbear/libtommath/
bn_mp_exteuclid.c 23 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp; local
26 if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY) {
34 /* initialize, (v1,v2,v3) = (0,1,b) */
43 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */
44 if ((err = mp_mul(&v1, &q, &tmp)) != MP_OKAY) { goto _ERR; }
51 /* (u1,u2,u3) = (v1,v2,v3) */
52 if ((err = mp_copy(&v1, &u1)) != MP_OKAY) { goto _ERR; }
56 /* (v1,v2,v3) = (t1,t2,t3) */
57 if ((err = mp_copy(&t1, &v1)) != MP_OKAY) { goto _ERR; }
75 _ERR: mp_clear_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLFace.java 31 public GLFace(GLVertex v1, GLVertex v2, GLVertex v3) {
32 addVertex(v1);
37 public GLFace(GLVertex v1, GLVertex v2, GLVertex v3, GLVertex v4) {
38 addVertex(v1);
84 GLVertex v1 = mVertexList.get(i); local
86 buffer.put(v1.index);
88 v0 = v1;
  /dalvik/libcore/luni/src/main/java/java/util/
Random.java 176 double v1, v2, s; local
178 v1 = 2 * nextDouble() - 1; // Generates two independent random
181 s = v1 * v1 + v2 * v2;
187 return v1 * norm; // should that not be norm instead of multiplier
  /external/opencore/codecs_v2/video/m4v_h263/dec/src/
conceal.cpp 142 uint8 *y1, *y2, *u1, *u2, *v1, *v2; local
156 v1 = curr->vChan + chrstart;
182 oscl_memcpy(v1, v2, B_SIZE);
183 v1 += width_C;
185 oscl_memcpy(v1, v2, B_SIZE);
186 v1 += width_C;
  /external/skia/src/animator/
SkOperandIterpolator.cpp 120 SkOperand v1[3], v2[3], v[3], vv[3]; local
123 inter.setKeyFrame(0, 100, iset(v1, 10, 20, 30), 0);
128 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
132 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
136 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);

Completed in 1390 milliseconds

1 2 3 4 5