Searched defs:v2 (Results 76 - 100 of 507) sorted by relevance

1234567891011>>

/external/libcxx/test/utilities/template.bitset/bitset.members/
H A Dright_shift.pass.cpp34 std::bitset<N> v2 = v1; local
35 assert((v1 >>= s) == (v2 >> s));
H A Dright_shift_eq.pass.cpp34 std::bitset<N> v2 = v1; local
38 assert(v1[i] == v2[i + s]);
/external/libcxx/test/utilities/template.bitset/bitset.operators/
H A Dop_and.pass.cpp32 std::bitset<N> v2 = make_bitset<N>(); local
34 assert((v1 & v2) == (v3 &= v2));;
H A Dop_not.pass.cpp32 std::bitset<N> v2 = make_bitset<N>(); local
34 assert((v1 ^ v2) == (v3 ^= v2));;
H A Dop_or.pass.cpp32 std::bitset<N> v2 = make_bitset<N>(); local
34 assert((v1 | v2) == (v3 |= v2));;
/external/nanopb-c/examples/using_double_on_avr/
H A Ddecode_double.c20 float v2 = double_to_float(message.field2); local
22 printf("Values: %f %f\n", v1, v2);
25 v2 == 0.00001f)
/external/stlport/test/unit/
H A Dfib.h6 Fibonacci() : v1(0), v2(1) {}
10 int v2; member in class:Fibonacci
16 int r = v1 + v2;
17 v1 = v2;
18 v2 = r;
/external/chromium_org/third_party/skia/tests/
H A DInterpolatorTest.cpp21 SkScalar v1[3], v2[3], v[3]; local
25 inter.setKeyFrame(1, 200, iset(v2, 110, 220, 330));
41 REPORTER_ASSERT(reporter, memcmp(v, v2, sizeof(v)) == 0);
45 REPORTER_ASSERT(reporter, memcmp(v, v2, sizeof(v)) == 0);
H A DPathOpsDVectorTest.cpp27 SkDVector v2 = tests[index] - tests[index + 1]; local
28 SkASSERT(ValidVector(v2));
29 v1 += v2;
31 SkDPoint p = tests[index + 1] + v2;
33 v2 -= v2;
34 REPORTER_ASSERT(reporter, v2.fX == 0 && v2.fY == 0);
/external/chromium_org/ui/v2/public/
H A Devent.h9 #include "ui/v2/public/v2_export.h"
11 namespace v2 { namespace
30 } // namespace v2
/external/chromium_org/ui/v2/src/
H A Dlayout.cc5 #include "ui/v2/public/layout.h"
7 #include "ui/v2/public/view.h"
8 #include "ui/v2/src/view_private.h"
10 namespace v2 { namespace
29 } // namespace v2
H A Dview_private.h9 #include "ui/v2/public/view.h"
15 namespace v2 { namespace
38 } // namespace v2
/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);
/external/clang/test/CodeGen/
H A Dmmx-inline-asm.c9 __m64 v1, v2, v3, v4, v5, v6, v7; local
19 : "=&y" (v1), "=&y" (v2), "=&y" (v3),
H A Dvld_dup.c9 int32_t v2[4]; local
28 v3 = vld4_dup_s32(v2);
/external/clang/test/SemaCXX/
H A Dattr-cleanup-gcc.cpp14 int v2 __attribute__((cleanup(c2))); local
/external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/
H A Dshift_left.pass.cpp28 std::valarray<int> v2(a2, sizeof(a2)/sizeof(a2[0]));
34 strides(st, sizeof(st)/sizeof(st[0])))] <<= v2; local
H A Dshift_right.pass.cpp28 std::valarray<int> v2(a2, sizeof(a2)/sizeof(a2[0]));
34 strides(st, sizeof(st)/sizeof(st[0])))] >>= v2; local
/external/libcxx/test/numerics/numarray/template.valarray/valarray.members/
H A Dapply_cref.pass.cpp30 std::valarray<T> v2 = v1.apply(f); local
31 assert(v2.size() == N1);
33 assert(v2[i] == a2[i]);
38 std::valarray<T> v2 = v1.apply(f); local
39 assert(v2.size() == N1);
46 std::valarray<T> v2 = (v1+v1).apply(f); local
47 assert(v2.size() == N1);
49 assert(v2[i] == a2[i]);
H A Dapply_value.pass.cpp30 std::valarray<T> v2 = v1.apply(f); local
31 assert(v2.size() == N1);
33 assert(v2[i] == a2[i]);
38 std::valarray<T> v2 = v1.apply(f); local
39 assert(v2.size() == N1);
46 std::valarray<T> v2 = (v1+v1).apply(f); local
47 assert(v2.size() == N1);
49 assert(v2[i] == a2[i]);
H A Dswap.pass.cpp28 std::valarray<T> v2(a2, N2);
30 std::valarray<T> v2_save = v2;
31 v1.swap(v2);
35 assert(v2.size() == v1_save.size());
36 for (int i = 0; i < v2.size(); ++i)
37 assert(v2[i] == v1_save[i]);
45 std::valarray<T> v2; local
47 std::valarray<T> v2_save = v2;
48 v1.swap(v2);
52 assert(v2
78 std::valarray<T> v2; local
[all...]
/external/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.special/
H A Dswap.pass.cpp30 std::valarray<T> v2(a2, N2);
32 std::valarray<T> v2_save = v2;
33 swap(v1, v2);
37 assert(v2.size() == v1_save.size());
38 for (int i = 0; i < v2.size(); ++i)
39 assert(v2[i] == v1_save[i]);
47 std::valarray<T> v2; local
49 std::valarray<T> v2_save = v2;
50 swap(v1, v2);
54 assert(v2
80 std::valarray<T> v2; local
[all...]
/external/mdnsresponder/Clients/
H A DClientCommon.c59 int v2 = cstr[ 1] - '0'; local
60 int val = v0 * 100 + v1 * 10 + v2;
/external/qemu/android/base/containers/
H A DPodVector_unittest.cpp114 PodVector<int> v2; local
115 v2 = v1;
119 EXPECT_EQ(kMaxCount, v2.size());
121 EXPECT_EQ(hashIndex(n), v2[n]) << "At index " << n;
/external/skia/tests/
H A DPathOpsDVectorTest.cpp27 SkDVector v2 = tests[index] - tests[index + 1]; local
28 SkASSERT(ValidVector(v2));
29 v1 += v2;
31 SkDPoint p = tests[index + 1] + v2;
33 v2 -= v2;
34 REPORTER_ASSERT(reporter, v2.fX == 0 && v2.fY == 0);

Completed in 928 milliseconds

1234567891011>>