Searched refs:v2 (Results 176 - 200 of 1044) sorted by relevance

1234567891011>>

/external/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.comparison/
H A Dor_valarray_valarray.pass.cpp30 std::valarray<T> v2(a2, N);
31 std::valarray<bool> v3 = v1 || v2;
32 assert(v1.size() == v2.size());
/external/llvm/test/MC/AArch64/
H A Dneon-diagnostics.s9 add v0.16b, v1.8b, v2.8b
10 sub v0.2d, v1.2d, v2.2s
13 // CHECK-ERROR: add v0.16b, v1.8b, v2.8b
16 // CHECK-ERROR: sub v0.2d, v1.2d, v2.2s
24 fadd v0.2d, v1.2s, v2.2s
25 fsub v0.4s, v1.2s, v2.4s
26 fsub v0.8b, v1.8b, v2.8b
29 // CHECK-ERROR: fadd v0.2d, v1.2s, v2.2s
32 // CHECK-ERROR: fsub v0.4s, v1.2s, v2.4s
35 // CHECK-ERROR: fsub v0.8b, v1.8b, v2
[all...]
H A Dneon-simd-ldst-multi-elem.s65 st1 { v0.16b, v1.16b, v2.16b }, [x0]
68 st1 { v0.2d, v1.2d, v2.2d }, [x0]
69 st1 { v0.8b, v1.8b, v2.8b }, [x0]
72 st1 { v0.1d, v1.1d, v2.1d }, [x0]
73 // CHECK: st1 { v0.16b, v1.16b, v2.16b }, [x0] // encoding: [0x00,0x60,0x00,0x4c]
76 // CHECK: st1 { v0.2d, v1.2d, v2.2d }, [x0] // encoding: [0x00,0x6c,0x00,0x4c]
77 // CHECK: st1 { v0.8b, v1.8b, v2.8b }, [x0] // encoding: [0x00,0x60,0x00,0x0c]
80 // CHECK: st1 { v0.1d, v1.1d, v2.1d }, [x0] // encoding: [0x00,0x6c,0x00,0x0c]
82 st1 { v0.16b-v2.16b }, [x0]
85 st1 { v0.2d-v2
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dchecks.h98 std::string* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) { argument
100 ss << names << " (" << v1 << " vs. " << v2 << ")"; local
131 inline std::string* Check##name##Impl(const t1& v1, const t2& v2, \
133 if (v1 op v2) return NULL; \
134 else return rtc::MakeCheckOpString(v1, v2, names); \
136 inline std::string* Check##name##Impl(int v1, int v2, const char* names) { \
137 if (v1 op v2) return NULL; \
138 else return rtc::MakeCheckOpString(v1, v2, names); \
159 #define DCHECK_EQ(v1, v2) CHECK_EQ(v1, v2)
[all...]
H A Dgunit.h49 #define EXPECT_EQ_WAIT(v1, v2, timeout) \
52 WAIT_(v1 == v2, timeout, res); \
53 if (!res) EXPECT_EQ(v1, v2); \
63 #define ASSERT_EQ_WAIT(v1, v2, timeout) \
66 WAIT_(v1 == v2, timeout, res); \
67 if (!res) ASSERT_EQ(v1, v2); \
/external/chromium_org/ui/v2/public/
H A Dpainter.h8 #include "ui/v2/public/v2_export.h"
14 namespace v2 { namespace
23 } // namespace v2
/external/chromium_org/ui/v2/src/
H A Dview_observer.cc5 #include "ui/v2/public/view_observer.h"
9 namespace v2 { namespace
21 } // namespace v2
/external/clang/test/CXX/special/class.conv/class.conv.ctor/
H A Dp1.cpp20 void_type2 v2 = atom(); member in namespace:PR13003
/external/clang/test/SemaCXX/
H A Dtype-convert-construct.cpp5 int v2 = typeof(int)(1,2); // expected-error {{excess elements in scalar initializer}} local
/external/libcxx/test/utilities/template.bitset/bitset.members/
H A Dop_eq_eq.pass.cpp35 std::bitset<N> v2 = v1; local
36 assert(v1 == v2);
39 v2[N/2].flip();
40 assert(v1 != v2);
/external/stlport/test/unit/
H A Dmerge_test.cpp57 vector<int> v2(v1.size());
59 __iota(v2.begin(), v2.end(), 3);
61 vector <int> result(v1.size() + v2.size());
62 merge(v1.begin(), v1.end(), v2.begin(), v2.end(), result.begin());
79 vector <int> v2(v1.size());
82 v2[i] = 7 - i;
84 vector<int> result(v1.size() + v2.size());
85 merge(v1.begin(), v1.end(), v2
[all...]
H A Dinnerprod_test.cpp53 vector<size_t> v2(v1.size());
56 v2[i] = v1.size() - i;
58 size_t result = inner_product(v1.begin(), v1.end(), v2.begin(), (size_t)0);
64 vector<size_t> v2(v1.size());
67 v2[i] = v1.size() - i;
69 size_t result=inner_product(v1.begin(), v1.end(), v2.begin(), (size_t)1, mult, add);
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...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/shaders/compiled/
H A Dpassthroughlum3d11ps.h34 dcl_input_ps linear v2.xyz
37 sample r0.xyzw, v2.xyzx, t0.xyzw, s0
H A Dpassthroughr3d11ps.h34 dcl_input_ps linear v2.xyz
37 sample r0.xyzw, v2.xyzx, t0.xyzw, s0
H A Dpassthroughrg3d11ps.h34 dcl_input_ps linear v2.xyz
37 sample r0.xyzw, v2.xyzx, t0.xyzw, s0
H A Dpassthroughrgb3d11ps.h34 dcl_input_ps linear v2.xyz
37 sample r0.xyzw, v2.xyzx, t0.xyzw, s0
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Ddata_log_helpers_unittest.cc23 webrtc::ValueContainer<int> v2(c);
26 v2.ToString(&s2);
29 v1 = v2;
38 webrtc::ValueContainer<double> v2(c);
41 v2.ToString(&s2);
44 v1 = v2;
/external/webrtc/src/system_wrappers/source/
H A Ddata_log_helpers_unittest.cc22 webrtc::ValueContainer<int> v2(c);
25 v2.ToString(&s2);
28 v1 = v2;
37 webrtc::ValueContainer<double> v2(c);
40 v2.ToString(&s2);
43 v1 = v2;
/external/chromium_org/v8/src/base/
H A Dlogging.h198 #define DCHECK_EQ(v1, v2) CHECK_EQ(v1, v2)
199 #define DCHECK_NE(v1, v2) CHECK_NE(v1, v2)
200 #define DCHECK_GE(v1, v2) CHECK_GE(v1, v2)
201 #define DCHECK_LT(v1, v2) CHECK_LT(v1, v2)
202 #define DCHECK_LE(v1, v2) CHECK_LE(v1, v2)
[all...]
/external/chromium_org/ui/views/layout/
H A Dbox_layout_unittest.cc37 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
38 host_->AddChildView(v2);
43 EXPECT_EQ(gfx::Rect(10, 0, 10, 20), v2->bounds());
51 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
52 host_->AddChildView(v2);
57 EXPECT_EQ(gfx::Rect(0, 10, 20, 10), v2->bounds());
65 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
66 host_->AddChildView(v2);
71 EXPECT_EQ(gfx::Rect(20, 20, 10, 20), v2->bounds());
79 EXPECT_EQ(gfx::Rect(20, 5, 10, 20), v2
87 View* v2 = new StaticSizedView(gfx::Size(10, 20)); local
101 View* v2 = new StaticSizedView(gfx::Size(10, 20)); local
144 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
157 ProportionallySizedView* v2 = new ProportionallySizedView(2); local
190 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
210 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
246 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
282 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
324 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
367 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
386 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
490 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
548 View* v2 = new StaticSizedView(gfx::Size(20, 20)); local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ppc/
H A Drecon_altivec.asm19 vmrghb v2, v0, v1 ;# v2 = 16-bit p0..p7
21 vaddshs v2, v2, v3 ;# v2 = r0..r7
26 vpkshus v2, v2, v3 ;# v2 = 8-bit r0..r15
27 stvx v2, 0, \Dst ;# to dst
58 vmrghb v2, v
[all...]
/external/libvpx/libvpx/vp8/common/ppc/
H A Drecon_altivec.asm19 vmrghb v2, v0, v1 ;# v2 = 16-bit p0..p7
21 vaddshs v2, v2, v3 ;# v2 = r0..r7
26 vpkshus v2, v2, v3 ;# v2 = 8-bit r0..r15
27 stvx v2, 0, \Dst ;# to dst
58 vmrghb v2, v
[all...]
/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/cc/base/
H A Dscoped_ptr_vector_unittest.cc52 ScopedPtrVector<Data> v2; local
53 v2.push_back(Data::Create(3));
54 v2.push_back(Data::Create(4));
55 v2.push_back(Data::Create(5));
62 v.insert_and_take(it, &v2);
72 EXPECT_EQ(3u, v2.size());
73 EXPECT_EQ(NULL, v2[0]);
74 EXPECT_EQ(NULL, v2[1]);
75 EXPECT_EQ(NULL, v2[2]);

Completed in 3848 milliseconds

1234567891011>>