Searched refs:v2 (Results 276 - 300 of 1044) sorted by relevance

<<11121314151617181920>>

/external/qemu/android/base/containers/
H A DStringVector_unittest.cpp111 StringVector v2; local
113 v2.append(StringView(kList2[n]));
116 v1.swap(&v2);
123 EXPECT_EQ(kList1Len, v2.size());
125 EXPECT_EQ(String(kList1[n]), v2[n]) << "At index " << n;
140 StringVector v2; local
141 v2 = v1;
146 EXPECT_EQ(::strlen(kList[n]), v2[n].size()) << "At index " << n;
147 EXPECT_STREQ(kList[n], v2[n].c_str()) << "At index " << n;
/external/eigen/Eigen/src/Core/arch/NEON/
H A DComplex.h70 Packet4f v1, v2; local
75 v2 = vcombine_f32(vdup_lane_f32(vget_low_f32(a.v), 1), vdup_lane_f32(vget_high_f32(a.v), 1));
79 v2 = vmulq_f32(v2, b.v);
80 // Conjugate v2
81 v2 = vreinterpretq_f32_u32(veorq_u32(vreinterpretq_u32_f32(v2), p4ui_CONJ_XOR));
82 // Swap real/imag elements in v2.
83 v2 = vrev64q_f32(v2);
166 float32x2_t a1, a2, v1, v2, prod; local
[all...]
/external/libhevc/common/arm64/
H A Dihevc_intra_pred_chroma_dc.s134 uaddlp v2.4h, v30.8b
140 uaddlp v2.2s, v2.4h
143 uadalp v17.1d, v2.2s
147 uaddlp v2.4h, v26.8b
150 uaddlp v2.2s, v2.4h
153 uadalp v17.1d, v2.2s
262 uaddlp v2.4h, v2
[all...]
/external/chromium_org/ui/views/
H A Dview_model_unittest.cc52 View v1, v2, v3; local
54 v2.set_id(1);
58 model.Add(&v2, 1);
68 View v1, v2, v3; local
70 v2.set_id(1);
74 model.Add(&v2, 1);
H A Dview_targeter_unittest.cc461 TestingView v2; local
464 v2.SetBounds(300, 0, 300, 300);
467 root_view->AddChildView(&v2);
468 v2.AddChildView(&v3);
481 // Hit tests against |v2|, which does not have a hit test mask.
482 EXPECT_TRUE(v2.TestDoesIntersectRect(&v2, gfx::Rect(0, 0, 200, 200)));
483 EXPECT_TRUE(v2.TestDoesIntersectRect(&v2, gfx::Rect(-10, 250, 60, 60)));
484 EXPECT_TRUE(v2
523 TestMaskedView* v2 = new TestMaskedView(); local
[all...]
/external/stlport/test/unit/
H A Dvector_test.cpp101 vector<double> v2; // Another empty vector of doubles. local
102 v2.push_back(3.56);
108 CPPUNIT_ASSERT( v2.size() == 1 );
109 CPPUNIT_ASSERT( v2[0] == 3.56 );
111 size_t v2Cap = v2.capacity();
113 v1.swap(v2); // Swap the vector's contents.
119 CPPUNIT_ASSERT( v2.size() == 2 );
120 CPPUNIT_ASSERT( v2.capacity() == v1Cap );
121 CPPUNIT_ASSERT( v2[0] == 32.1 );
122 CPPUNIT_ASSERT( v2[
338 vector<int *> v2 = v1; local
[all...]
H A Dequal_test.cpp79 bool operator < (const Test& v1, int v2) argument
80 { return v1.value < v2; }
82 bool operator < (int v1, const Test& v2) argument
83 { return v1 < v2.value; }
86 bool operator < (const Test& v1, const Test& v2) argument
87 { return v1.value < v2.value; }
144 vector <int> v2(10);
145 CPPUNIT_ASSERT( !equal(v1.begin(), v1.end(), v2.begin()) );
147 copy(v1.begin(), v1.end(), v2.begin());
148 CPPUNIT_ASSERT( equal(v1.begin(), v1.end(), v2
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/shaders/compiled/
H A Dpassthroughr3di11ps.h32 dcl_input_ps linear v2.xyz
37 mul r0.xyz, r0.xyzx, v2.xyzx
H A Dpassthroughr3dui11ps.h32 dcl_input_ps linear v2.xyz
37 mul r0.xyz, r0.xyzx, v2.xyzx
H A Dpassthroughrg3di11ps.h32 dcl_input_ps linear v2.xyz
37 mul r0.xyz, r0.xyzx, v2.xyzx
H A Dpassthroughrg3dui11ps.h32 dcl_input_ps linear v2.xyz
37 mul r0.xyz, r0.xyzx, v2.xyzx
H A Dpassthroughrgb3di11ps.h32 dcl_input_ps linear v2.xyz
37 mul r0.xyz, r0.xyzx, v2.xyzx
H A Dpassthroughrgb3dui11ps.h32 dcl_input_ps linear v2.xyz
37 mul r0.xyz, r0.xyzx, v2.xyzx
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-381534.js11 var v2 = 1;
12 var arr = new Array(+0, true, 0, -0, false, undefined, null, "0", obj, v1, -(4/3), -1.3333333333333, "str", v2, 1, false);
/external/clang/test/CXX/class/class.mem/
H A Dp1.cpp26 static int v2; // expected-note{{previous declaration is here}} member in struct:S2
27 static int v2; //expected-error{{duplicate member 'v2'}} member in struct:S2
/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 Dattr-cleanup.c12 int v2 __attribute((cleanup(1, 2))); // expected-error {{'cleanup' attribute takes one argument}}
32 int v2 __attribute__((cleanup(c3))); // expected-error {{'cleanup' function 'c3' parameter has type 'struct s' which is incompatible with type 'int *'}} local
/external/clang/test/SemaTemplate/
H A Dinstantiate-clang.cpp13 void f(T v1, double4 v2) { argument
14 v1.xy = v2.yx;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableBiMap.java43 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { argument
44 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2));
48 K k1, V v1, K k2, V v2, K k3, V v3) {
50 k1, v1, k2, v2, k3, v3));
54 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
56 k1, v1, k2, v2, k3, v3, k4, v4));
60 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
62 k1, v1, k2, v2, k3, v3, k4, v4, k5, v5));
47 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
53 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
59 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
/external/libcxx/test/numerics/numarray/template.mask.array/mask.array.assign/
H A Dmask_array.pass.cpp30 const std::valarray<int> v2(a2, N2);
33 v1[vb1] = v2[vb2];
H A Dvalarray.pass.cpp28 std::valarray<int> v2(a2, N2);
31 v1[vb] = v2;
/external/libcxx/test/numerics/numarray/template.mask.array/mask.array.comp.assign/
H A Daddition.pass.cpp28 std::valarray<int> v2(a2, N2);
31 v1[vb] += v2;
H A Dand.pass.cpp28 std::valarray<int> v2(a2, N2);
31 v1[vb] &= v2;
H A Ddivide.pass.cpp28 std::valarray<int> v2(a2, N2);
31 v1[vb] /= v2;
H A Dmodulo.pass.cpp28 std::valarray<int> v2(a2, N2);
31 v1[vb] %= v2;

Completed in 505 milliseconds

<<11121314151617181920>>