Searched defs:v2 (Results 126 - 150 of 507) sorted by relevance

1234567891011>>

/external/clang/test/SemaTemplate/
H A Dinstantiate-deeply.cpp11 c v2 = v1 * v1; local
14 field += v2 + v4;
/external/libcxx/test/strings/basic.string/string.modifiers/string_insert/
H A Diter_iter_iter.pass.cpp133 std::string v2; local
136 std::string::iterator i = v.insert(v2.cbegin() + 10, a, a+N);
/external/openssl/crypto/
H A Do_str.c103 int OPENSSL_memcmp(const void *v1,const void *v2,size_t n) argument
105 const unsigned char *c1=v1,*c2=v2;
/external/pdfium/core/include/fxcrt/
H A Dfx_ext.h87 baseType v1, v2; local
93 while (j > -1 && (v2 = pArray[j]) > v1) {
94 pArray[j + gap] = v2;
/external/skia/experimental/Intersection/
H A DTriangleUtilities.cpp15 _Vector v2 = pt - triangle[0]; local
20 double dot02 = v0.dot(v2);
22 double dot12 = v1.dot(v2);
/external/skia/src/pathops/
H A DSkPathOpsTriangle.cpp16 SkDVector v2 = pt - fPts[0]; local
21 double dot02 = v0.dot(v2);
23 double dot12 = v1.dot(v2);
/external/stlport/test/unit/
H A Dcopy_test.cpp90 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
[all...]
H A Dsearch_test.cpp42 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
[all...]
H A Dsetdiff_test.cpp46 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, (in
[all...]
H A Dswap_test.cpp91 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 ), n
134 vector<Obj> v2; local
[all...]
/external/valgrind/main/none/tests/x86-linux/
H A Dsigcontext.c47 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);
/external/chromium_org/ash/display/
H A Ddisplay_pref_util.h19 T k2, const std::string& v2,
24 (*map)[k2] = v2;
32 T k2, const std::string& v2,
36 (*map)[k2] = v2;
18 CreateToStringMap(T k1, const std::string& v1, T k2, const std::string& v2, T k3, const std::string& v3, T k4, const std::string& v4) argument
31 CreateToStringMap(T k1, const std::string& v1, T k2, const std::string& v2, T k3, const std::string& v3) argument
/external/chromium_org/chromecast/media/cma/ipc/
H A Dmedia_message_unittest.cc58 uint8 v2 = k; local
59 EXPECT_TRUE(msg1->WritePod(v2));
72 uint8 v2; local
74 EXPECT_TRUE(msg2->ReadPod(&v2));
75 EXPECT_EQ(v2, expected_v2);
90 uint8 v2 = 0; local
95 EXPECT_FALSE(msg1->WritePod(v2));
115 uint32 v2; local
116 EXPECT_TRUE(msg2->ReadPod(&v2));
117 EXPECT_EQ(v2, v
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_feedback.c57 const SWvertex *v1, const SWvertex *v2)
59 if (!_swrast_culltriangle(ctx, v0, v1, v2)) {
66 feedback_vertex(ctx, v2, v2);
69 feedback_vertex(ctx, v0, v2);
70 feedback_vertex(ctx, v1, v2);
71 feedback_vertex(ctx, v2, v2);
112 const SWvertex *v1, const SWvertex *v2)
114 if (!_swrast_culltriangle(ctx, v0, v1, v2)) {
56 _swrast_feedback_triangle(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
111 _swrast_select_triangle(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_triemit.h41 VERTEX *v2,
52 PRINT_VERTEX(v2);
58 COPY_DWORDS( j, vb, vertsize, v2 );
65 VERTEX *v2,
76 PRINT_VERTEX(v2);
84 COPY_DWORDS( j, vb, vertsize, v2 );
93 VERTEX *v2 )
103 PRINT_VERTEX(v2);
108 COPY_DWORDS( j, vb, vertsize, v2 );
38 quad( CTX_ARG, VERTEX *v0, VERTEX *v1, VERTEX *v2, VERTEX *v3 ) argument
62 quad( CTX_ARG, VERTEX *v0, VERTEX *v1, VERTEX *v2, VERTEX *v3 ) argument
/external/chromium_org/ui/gfx/geometry/
H A Dvector2d_unittest.cc119 Vector2dF v2 = ScaleVector2d( local
122 EXPECT_EQ(double_values[i][0] * double_values[i][2], v2.x());
123 EXPECT_EQ(double_values[i][1] * double_values[i][3], v2.y());
144 Vector2dF v2 = ScaleVector2d( local
147 EXPECT_EQ(single_values[i][0] * single_values[i][2], v2.x());
148 EXPECT_EQ(single_values[i][1] * single_values[i][2], v2.y());
H A Dvector3d_unittest.cc95 Vector3dF v2 = ScaleVector3d( local
100 EXPECT_EQ(triple_values[i][0] * triple_values[i][3], v2.x());
101 EXPECT_EQ(triple_values[i][1] * triple_values[i][4], v2.y());
102 EXPECT_EQ(triple_values[i][2] * triple_values[i][5], v2.z());
131 Vector3dF v2 = ScaleVector3d( local
136 EXPECT_EQ(single_values[i][0] * single_values[i][3], v2.x());
137 EXPECT_EQ(single_values[i][1] * single_values[i][3], v2.y());
138 EXPECT_EQ(single_values[i][2] * single_values[i][3], v2.z());
167 double v2 = float_values[i][2]; local
171 static_cast<double>(v2) * v
[all...]
/external/clang/test/CodeGen/
H A Dxcore-abi.c43 char v2 = va_arg (ap, char); // expected-warning{{second argument to 'va_arg' is of promotable type 'char'}} local
44 f(&v2);
/external/clang/test/Sema/
H A Dalias-redefinition.c30 int v2; variable
32 int var2 __attribute((alias("v2"))); // expected-error {{redefinition of 'var2'}}
H A Dvector-assign.c10 v2u v2; local
15 v1 = v2; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' values) from 'v2u' (vector of 2 'unsigned int' values)}}
20 v2 = v1; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned int' values) from 'v2s' (vector of 2 'int' values)}}
21 v2 = v3; // expected-error {{assigning to 'v2u' (vector of 2 'unsigned int' values) from incompatible type 'v1s' (vector of 1 'int' value)}}
22 v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned int' values) from 'v2f' (vector of 2 'float' values)}}
23 v2 = v5; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned int' values) from 'v4ss' (vector of 4 'short' values)}}
26 v3 = v2; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type 'v2u' (vector of 2 'unsigned int' values)}}
31 v4 = v2; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' values) from 'v2u' (vector of 2 'unsigned int' values)}}
36 v5 = v2; // expected-warning {{incompatible vector types assigning to 'v4ss' (vector of 4 'short' values) from 'v2u' (vector of 2 'unsigned int' values)}}
H A Dvector-cast.c10 t2 v2; local
13 v2 = (t2)v1; // expected-error {{invalid conversion between vector type \
15 v1 = (t1)v2; // expected-error {{invalid conversion between vector type \
17 v3 = (t3)v2;
/external/eigen/test/eigen2/
H A Deigen2_basicstuff.cpp30 v2 = VectorType::Random(rows), local
/external/fio/crc/
H A Dxxhash.h73 uint32_t v2; member in struct:XXH_state32_t
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMapFauxverideShim.java67 K k1, V v1, K k2, V v2) {
82 K k1, V v1, K k2, V v2, K k3, V v3) {
97 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
112 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
66 of( K k1, V v1, K k2, V v2) argument
81 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
96 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
111 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
/external/mesa3d/src/mesa/swrast/
H A Ds_feedback.c57 const SWvertex *v1, const SWvertex *v2)
59 if (!_swrast_culltriangle(ctx, v0, v1, v2)) {
66 feedback_vertex(ctx, v2, v2);
69 feedback_vertex(ctx, v0, v2);
70 feedback_vertex(ctx, v1, v2);
71 feedback_vertex(ctx, v2, v2);
112 const SWvertex *v1, const SWvertex *v2)
114 if (!_swrast_culltriangle(ctx, v0, v1, v2)) {
56 _swrast_feedback_triangle(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
111 _swrast_select_triangle(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
[all...]

Completed in 2251 milliseconds

1234567891011>>