Searched defs:v1 (Results 26 - 50 of 388) sorted by relevance

1234567891011>>

/external/libcxx/test/std/utilities/template.bitset/bitset.operators/
H A Dop_and.pass.cpp31 std::bitset<N> v1 = make_bitset<N>(); local
33 std::bitset<N> v3 = v1;
34 assert((v1 & v2) == (v3 &= v2));;
H A Dop_not.pass.cpp31 std::bitset<N> v1 = make_bitset<N>(); local
33 std::bitset<N> v3 = v1;
34 assert((v1 ^ v2) == (v3 ^= v2));;
H A Dop_or.pass.cpp31 std::bitset<N> v1 = make_bitset<N>(); local
33 std::bitset<N> v3 = v1;
34 assert((v1 | v2) == (v3 |= v2));;
/external/nanopb-c/examples/using_double_on_avr/
H A Ddecode_double.c19 float v1 = double_to_float(message.field1); local
22 printf("Values: %f %f\n", v1, v2);
24 if (v1 == 1234.5678f &&
/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.c8 int32x2x3_t v1; local
16 v1 = vld3_dup_s32(v0);
/external/clang/test/SemaCXX/
H A Dattr-cleanup-gcc.cpp13 int v1 __attribute__((cleanup(N::c1))); // expected-warning {{GCC does not allow the 'cleanup' attribute argument to be anything other than a simple identifier}} local
/external/libcxx/test/std/numerics/numarray/template.valarray/valarray.members/
H A Dapply_cref.pass.cpp29 std::valarray<T> v1(a1, N1);
30 std::valarray<T> v2 = v1.apply(f);
37 std::valarray<T> v1; local
38 std::valarray<T> v2 = v1.apply(f);
45 std::valarray<T> v1(a1, N1);
46 std::valarray<T> v2 = (v1+v1).apply(f);
H A Dapply_value.pass.cpp29 std::valarray<T> v1(a1, N1);
30 std::valarray<T> v2 = v1.apply(f);
37 std::valarray<T> v1; local
38 std::valarray<T> v2 = v1.apply(f);
45 std::valarray<T> v1(a1, N1);
46 std::valarray<T> v2 = (v1+v1).apply(f);
H A Dswap.pass.cpp27 std::valarray<T> v1(a1, N1);
29 std::valarray<T> v1_save = v1;
31 v1.swap(v2);
32 assert(v1.size() == v2_save.size());
33 for (int i = 0; i < v1.size(); ++i)
34 assert(v1[i] == v2_save[i]);
44 std::valarray<T> v1(a1, N1);
46 std::valarray<T> v1_save = v1;
48 v1.swap(v2);
49 assert(v1
61 std::valarray<T> v1; local
77 std::valarray<T> v1; local
[all...]
/external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.special/
H A Dswap.pass.cpp29 std::valarray<T> v1(a1, N1);
31 std::valarray<T> v1_save = v1;
33 swap(v1, v2);
34 assert(v1.size() == v2_save.size());
35 for (int i = 0; i < v1.size(); ++i)
36 assert(v1[i] == v2_save[i]);
46 std::valarray<T> v1(a1, N1);
48 std::valarray<T> v1_save = v1;
50 swap(v1, v2);
51 assert(v1
63 std::valarray<T> v1; local
79 std::valarray<T> v1; local
[all...]
/external/libcxx/test/std/utilities/template.bitset/bitset.members/
H A Dindex.pass.cpp31 std::bitset<N> v1 = make_bitset<N>(); local
34 assert(v1[N/2] == v1.test(N/2));
35 typename std::bitset<N>::reference r = v1[N/2];
36 assert(r == v1.test(N/2));
37 typename std::bitset<N>::reference r2 = v1[N/2];
39 assert(r == v1.test(N/2));
42 assert(v1.test(N/2) == false);
45 assert(v1.test(N/2) == true);
48 assert(v1
[all...]
/external/mdnsresponder/Clients/
H A DClientCommon.c58 int v1 = cstr[ 0] - '0'; local
60 int val = v0 * 100 + v1 * 10 + v2;
/external/skia/tests/
H A DInterpolatorTest.cpp21 SkScalar v1[3], v2[3], v[3]; local
24 inter.setKeyFrame(0, 100, iset(v1, 10, 20, 30), 0);
29 REPORTER_ASSERT(reporter, memcmp(v, v1, sizeof(v)) == 0);
33 REPORTER_ASSERT(reporter, memcmp(v, v1, sizeof(v)) == 0);
37 REPORTER_ASSERT(reporter, memcmp(v, v1, sizeof(v)) == 0);
H A DPathOpsDVectorTest.cpp25 SkDVector v1 = tests[index + 1] - tests[index]; local
26 SkASSERT(ValidVector(v1));
29 v1 += v2;
30 REPORTER_ASSERT(reporter, v1.fX == 0 && v1.fY == 0);
33 v1 = tests[index + 1] - tests[index];
34 v1 /= 2;
35 v1 *= 2;
36 v1 -= tests[index + 1] - tests[index];
37 REPORTER_ASSERT(reporter, v1
[all...]
/external/valgrind/none/tests/s390x/
H A Dbfp-3.c6 void maebr(float v1, float v2, float v3) argument
8 float r1 = v1;
12 printf("maebr %f * %f + %f -> %f\n", v2, v3, v1, r1);
15 void madbr(double v1, double v2, double v3) argument
17 double r1 = v1;
21 printf("madbr %f * %f + %f -> %f\n", v2, v3, v1, r1);
24 void msebr(float v1, float v2, float v3) argument
26 float r1 = v1;
30 printf("msebr %f * %f - %f -> %f\n", v2, v3, v1, r1);
33 void msdbr(double v1, doubl argument
[all...]
H A Dbfp-4.c5 void cebr(float v1, float v2) argument
12 : [psw]"=d"(cc) : [r1]"f"(v1), [r2]"f"(v2) : "cc");
14 printf("cfebr: %f == %f\n", v1, v2);
16 printf("cfebr: %f < %f\n", v1, v2);
18 printf("cfebr: %f > %f\n", v1, v2);
21 void cdbr(double v1, double v2) argument
28 : [psw]"=d"(cc) : [r1]"f"(v1), [r2]"f"(v2) : "cc");
30 printf("cdebr: %f == %f\n", v1, v2);
32 printf("cdebr: %f < %f\n", v1, v2);
34 printf("cdebr: %f > %f\n", v1, v
[all...]
H A Dspechelper-algr.c24 unsigned long v1, v2; local
29 v1 = v2 = 0;
31 if (branch(0, v1, v2)) ++wrong; else ++ok;
32 if (branch(1, v1, v2)) ++wrong; else ++ok;
33 if (branch(2, v1, v2)) ++wrong; else ++ok;
34 if (branch(3, v1, v2)) ++wrong; else ++ok;
35 if (branch(4, v1, v2)) ++wrong; else ++ok;
36 if (branch(5, v1, v2)) ++wrong; else ++ok;
37 if (branch(6, v1, v2)) ++wrong; else ++ok;
38 if (branch(7, v1, v
57 unsigned long v1, v2; local
91 unsigned long v1, v2; local
127 unsigned long v1, v2; local
[all...]
H A Dspechelper-alr.c24 unsigned v1, v2; local
29 v1 = v2 = 0;
31 if (branch(0, v1, v2)) ++wrong; else ++ok;
32 if (branch(1, v1, v2)) ++wrong; else ++ok;
33 if (branch(2, v1, v2)) ++wrong; else ++ok;
34 if (branch(3, v1, v2)) ++wrong; else ++ok;
35 if (branch(4, v1, v2)) ++wrong; else ++ok;
36 if (branch(5, v1, v2)) ++wrong; else ++ok;
37 if (branch(6, v1, v2)) ++wrong; else ++ok;
38 if (branch(7, v1, v
57 unsigned v1, v2; local
91 unsigned v1, v2; local
127 unsigned v1, v2; local
[all...]
H A Dspechelper-clr.c22 int wrong, ok, v1, v2; local
26 v1 = v2 = 42;
29 if (branch(0, v1, v2)) ++wrong; else ++ok;
30 if (branch(1, v1, v2)) ++wrong; else ++ok;
31 if (branch(2, v1, v2)) ++wrong; else ++ok;
32 if (branch(3, v1, v2)) ++wrong; else ++ok;
33 if (branch(4, v1, v2)) ++wrong; else ++ok;
34 if (branch(5, v1, v2)) ++wrong; else ++ok;
35 if (branch(6, v1, v2)) ++wrong; else ++ok;
36 if (branch(7, v1, v
55 int wrong, ok, v1, v2; local
88 int wrong, ok, v1, v2; local
[all...]
H A Dspechelper-cr.c22 int wrong, ok, v1, v2; local
26 v1 = v2 = 42;
29 if (branch(0, v1, v2)) ++wrong; else ++ok;
30 if (branch(1, v1, v2)) ++wrong; else ++ok;
31 if (branch(2, v1, v2)) ++wrong; else ++ok;
32 if (branch(3, v1, v2)) ++wrong; else ++ok;
33 if (branch(4, v1, v2)) ++wrong; else ++ok;
34 if (branch(5, v1, v2)) ++wrong; else ++ok;
35 if (branch(6, v1, v2)) ++wrong; else ++ok;
36 if (branch(7, v1, v
55 int wrong, ok, v1, v2; local
88 int wrong, ok, v1, v2; local
[all...]
H A Dspechelper-ltr.c22 int wrong, ok, v1; local
26 v1 = 0;
28 if (branch(0, v1)) ++wrong; else ++ok;
29 if (branch(1, v1)) ++wrong; else ++ok;
30 if (branch(2, v1)) ++wrong; else ++ok;
31 if (branch(3, v1)) ++wrong; else ++ok;
32 if (branch(4, v1)) ++wrong; else ++ok;
33 if (branch(5, v1)) ++wrong; else ++ok;
34 if (branch(6, v1)) ++wrong; else ++ok;
35 if (branch(7, v1))
54 int wrong, ok, v1; local
85 int wrong, ok, v1; local
[all...]
H A Dspechelper-or.c22 int wrong, ok, v1, v2; local
26 v1 = v2 = 0;
28 if (branch(0, v1, v2)) ++wrong; else ++ok;
29 if (branch(1, v1, v2)) ++wrong; else ++ok;
30 if (branch(2, v1, v2)) ++wrong; else ++ok;
31 if (branch(3, v1, v2)) ++wrong; else ++ok;
32 if (branch(4, v1, v2)) ++wrong; else ++ok;
33 if (branch(5, v1, v2)) ++wrong; else ++ok;
34 if (branch(6, v1, v2)) ++wrong; else ++ok;
35 if (branch(7, v1, v
54 int wrong, ok, v1, v2; local
[all...]
H A Dspechelper-slgr.c28 unsigned long v1, v2; local
33 v1 = v2 = 42;
36 if (branch(0, v1, v2)) ++wrong; else ++ok;
37 if (branch(1, v1, v2)) ++wrong; else ++ok;
38 if (branch(2, v1, v2)) ++ok; else ++wrong;
39 if (branch(3, v1, v2)) ++ok; else ++wrong;
40 if (branch(4, v1, v2)) ++wrong; else ++ok;
41 if (branch(5, v1, v2)) ++wrong; else ++ok;
42 if (branch(6, v1, v2)) ++ok; else ++wrong;
43 if (branch(7, v1, v
62 unsigned long v1, v2; local
98 unsigned long v1, v2; local
[all...]
H A Dspechelper-slr.c26 unsigned int v1, v2; local
31 v1 = v2 = 0xffffffff;
34 if (branch(0, v1, v2)) ++wrong; else ++ok;
35 if (branch(1, v1, v2)) ++wrong; else ++ok;
36 if (branch(2, v1, v2)) ++ok; else ++wrong;
37 if (branch(3, v1, v2)) ++ok; else ++wrong;
38 if (branch(4, v1, v2)) ++wrong; else ++ok;
39 if (branch(5, v1, v2)) ++wrong; else ++ok;
40 if (branch(6, v1, v2)) ++ok; else ++wrong;
41 if (branch(7, v1, v
60 unsigned int v1, v2; local
96 unsigned int v1, v2; local
[all...]

Completed in 1946 milliseconds

1234567891011>>