Searched refs:v2 (Results 101 - 125 of 805) sorted by relevance

1234567891011>>

/external/libcxx/test/std/numerics/numarray/template.valarray/valarray.cassign/
H A Dplus_value.pass.cpp27 std::valarray<T> v2(a2, N);
29 assert(v1.size() == v2.size());
31 assert(v1[i] == v2[i]);
H A Dshift_left_value.pass.cpp27 std::valarray<T> v2(a2, N);
29 assert(v1.size() == v2.size());
31 assert(v1[i] == v2[i]);
H A Dtimes_value.pass.cpp27 std::valarray<T> v2(a2, N);
29 assert(v1.size() == v2.size());
31 assert(v1[i] == v2[i]);
H A Dxor_value.pass.cpp27 std::valarray<T> v2(a2, N);
29 assert(v1.size() == v2.size());
31 assert(v1[i] == v2[i]);
H A Dmodulo_valarray.pass.cpp28 std::valarray<T> v2(a2, N);
30 v2 %= v1;
31 assert(v1.size() == v2.size());
34 assert(v2[i] == v3[i]);
/external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/
H A Dequal_value_valarray.pass.cpp28 std::valarray<T> v2(a2, N);
29 std::valarray<bool> v3 = 2 == v2;
30 assert(v2.size() == v3.size());
H A Dgreater_equal_value_valarray.pass.cpp28 std::valarray<T> v2(a2, N);
29 std::valarray<bool> v3 = 2 >= v2;
30 assert(v2.size() == v3.size());
H A Dgreater_value_valarray.pass.cpp28 std::valarray<T> v2(a2, N);
29 std::valarray<bool> v3 = 2 > v2;
30 assert(v2.size() == v3.size());
H A Dless_equal_value_valarray.pass.cpp28 std::valarray<T> v2(a2, N);
29 std::valarray<bool> v3 = 2 <= v2;
30 assert(v2.size() == v3.size());
H A Dless_value_valarray.pass.cpp28 std::valarray<T> v2(a2, N);
29 std::valarray<bool> v3 = 2 < v2;
30 assert(v2.size() == v3.size());
H A Dnot_equal_value_valarray.pass.cpp28 std::valarray<T> v2(a2, N);
29 std::valarray<bool> v3 = 2 != v2;
30 assert(v2.size() == v3.size());
/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/clang/test/Lexer/
H A Dms-compatibility.c7 void *v2 = F; variable
9 // CHECK-MS-COMPAT: void *v2 = L "aaa";
11 // CHECK-NO-MS-COMPAT: void *v2 = L "aaa";
/external/clang/test/Parser/
H A Dpragma-visibility2.c13 int v2; variable
14 // CHECK: @v2 = common global i32 0, align 4
/external/mesa3d/src/mesa/swrast/
H A Ds_feedback.h37 const SWvertex *v1, const SWvertex *v2 );
40 const SWvertex *v1, const SWvertex *v2 );
45 const SWvertex *v1, const SWvertex *v2 );
48 const SWvertex *v1, const SWvertex *v2 );
H A Ds_triangle.h38 const SWvertex *v2);
47 const SWvertex *v2 );
/external/clang/test/Sema/
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)}}
/external/libcxx/test/std/containers/sequences/deque/deque.cons/
H A Dcopy.pass.cpp36 std::deque<int, test_allocator<int> > v2 = v; local
37 assert(v2 == v);
38 assert(v2.get_allocator() == v.get_allocator());
43 std::deque<int, other_allocator<int> > v2 = v; local
44 assert(v2 == v);
45 assert(v2.get_allocator() == other_allocator<int>(-2));
56 std::deque<int, min_allocator<int> > v2 = v; local
57 assert(v2 == v);
58 assert(v2.get_allocator() == v.get_allocator());
/external/libcxx/test/std/containers/sequences/vector.bool/
H A Dcopy.pass.cpp40 std::vector<bool, test_allocator<bool> > v2 = v; local
41 assert(v2 == v);
42 assert(v2.get_allocator() == v.get_allocator());
47 std::vector<bool, other_allocator<bool> > v2 = v; local
48 assert(v2 == v);
49 assert(v2.get_allocator() == other_allocator<bool>(-2));
60 std::vector<bool, min_allocator<bool> > v2 = v; local
61 assert(v2 == v);
62 assert(v2.get_allocator() == v.get_allocator());
/external/v8/test/mjsunit/compiler/
H A Dregress-gap.js30 function small_select(n, v1, v2) {
33 v1 = v2;
34 v2 = tmp;
39 function select(n, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) {
42 v1 = v2;
43 v2 = v3;
56 function select_while(n, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) {
60 v1 = v2;
61 v2 = v3;
75 function two_cycles(n, v1, v2, v
[all...]
/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/PCH/
H A Dcxx-implicit-moves.cpp20 float test(float v1, float v2) { argument
21 NSSize s = NSMakeSize(v1, v2);
/external/libcxx/test/std/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]);

Completed in 512 milliseconds

1234567891011>>