Searched refs:v2 (Results 151 - 175 of 805) sorted by relevance

1234567891011>>

/external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/
H A Dand_valarray_valarray.pass.cpp30 std::valarray<T> v2(a2, N);
31 std::valarray<bool> v3 = v1 && v2;
32 assert(v1.size() == v2.size());
H A Dequal_valarray_valarray.pass.cpp30 std::valarray<T> v2(a2, N);
31 std::valarray<bool> v3 = v1 == v2;
32 assert(v1.size() == v2.size());
H A Dgreater_equal_valarray_valarray.pass.cpp30 std::valarray<T> v2(a2, N);
31 std::valarray<bool> v3 = v1 >= v2;
32 assert(v1.size() == v2.size());
H A Dgreater_valarray_valarray.pass.cpp30 std::valarray<T> v2(a2, N);
31 std::valarray<bool> v3 = v1 > v2;
32 assert(v1.size() == v2.size());
H A Dless_equal_valarray_valarray.pass.cpp30 std::valarray<T> v2(a2, N);
31 std::valarray<bool> v3 = v1 <= v2;
32 assert(v1.size() == v2.size());
H A Dless_valarray_valarray.pass.cpp30 std::valarray<T> v2(a2, N);
31 std::valarray<bool> v3 = v1 < v2;
32 assert(v1.size() == v2.size());
H A Dnot_equal_valarray_valarray.pass.cpp30 std::valarray<T> v2(a2, N);
31 std::valarray<bool> v3 = v1 != v2;
32 assert(v1.size() == v2.size());
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...]
H A Dneon-simd-ldst-one-elem.s46 ld3r { v0.16b, v1.16b, v2.16b }, [x0]
49 ld3r { v0.2d, v1.2d, v2.2d }, [x0]
50 ld3r { v0.8b, v1.8b, v2.8b }, [x0]
54 // CHECK: ld3r { v0.16b, v1.16b, v2.16b }, [x0] // encoding: [0x00,0xe0,0x40,0x4d]
57 // CHECK: ld3r { v0.2d, v1.2d, v2.2d }, [x0] // encoding: [0x00,0xec,0x40,0x4d]
58 // CHECK: ld3r { v0.8b, v1.8b, v2.8b }, [x0] // encoding: [0x00,0xe0,0x40,0x0d]
63 ld4r { v0.16b, v1.16b, v2.16b, v3.16b }, [x0]
65 ld4r { v31.4s, v0.4s, v1.4s, v2.4s }, [sp]
66 ld4r { v0.2d, v1.2d, v2.2d, v3.2d }, [x0]
67 ld4r { v0.8b, v1.8b, v2
[all...]
/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/std/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);
H A Dflip_all.pass.cpp32 std::bitset<N> v2 = v1; local
33 v2.flip();
35 assert(v2[i] == ~v1[i]);
H A Dop_and_eq.pass.cpp32 std::bitset<N> v2 = make_bitset<N>(); local
34 v1 &= v2;
36 assert(v1[i] == (v3[i] && v2[i]));
/external/libavc/common/armv8/
H A Dih264_ihadamard_scaling_av8.s110 saddl v5.4s, v1.4h, v2.4h //x1 = x5 + x6
111 ssubl v6.4s, v1.4h, v2.4h //x2 = x5 - x6
116 sub v2.4s, v4.4s, v5.4s //pi4_tmp_ptr[2] = x0 - x1
125 trn1 v6.4s, v2.4s, v3.4s
126 trn2 v7.4s, v2.4s, v3.4s
129 trn2 v2.2d, v4.2d, v6.2d
135 add v5.4s, v1.4s, v2.4s //x1 = x5+x6
136 sub v6.4s, v1.4s, v2.4s //x2 = x5-x6
141 sub v2.4s, v4.4s, v5.4s //pi4_tmp_ptr[2] = x0 - x1
146 mul v2
[all...]
H A Dih264_iquant_itrans_recon_dc_av8.s137 ld1 {v2.h}[0], [x0]
139 smull v0.4s, v0.4h, v2.4h
150 ld1 {v2.s}[0], [x1], x3
151 ld1 {v2.s}[1], [x1]
154 uxtl v2.8h, v2.8b
157 add v2.8h, v0.8h, v2.8h
160 sqxtun v2.8b, v2
[all...]
/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/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/guava/guava/src/com/google/common/hash/
H A DSipHashFunction.java105 // was some asymmetry so that the initial v0 and v1 differ from v2 and v3.
108 private long v2 = 0x6c7967656e657261L; field in class:SipHashFunction.SipHasher
124 this.v2 ^= k0;
146 v2 ^= 0xFFL;
148 return HashCode.fromLong(v0 ^ v1 ^ v2 ^ v3);
160 v2 += v3;
164 v3 ^= v2;
166 v2 += v1;
170 v1 ^= v2;
172 v2
[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/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DRotation.java310 * @param v2 desired image of u2 by the rotation
313 public Rotation(Vector3D u1, Vector3D u2, Vector3D v1, Vector3D v2) { argument
319 double v2v2 = Vector3D.dotProduct(v2, v2);
339 // adjust v2 in order to have (u1|u2) = (v1|v2) and (v2'|v2') = (u2|u2)
341 double v1v2 = Vector3D.dotProduct(v1, v2);
346 double v2x = alpha * v1x + beta * v2
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DAbstractRandomGenerator.java259 double v2 = 0;
263 v2 = 2 * nextDouble() - 1;
264 s = v1 * v1 + v2 * v2;
269 cachedNormalDeviate = v2 * s;
/external/valgrind/none/tests/x86-linux/
H A Dsigcontext.c47 int v2, v3, v4; local
67 : "=a" (ret), "=d" (v2), "=S" (v3), "=D" (v4)
69 printf("v2=%x v3=%x v4=%x\n", v2, v3, v4);
82 : "=a" (ret), "=d" (v2), "=S" (v3), "=D" (v4)
84 printf("v2=%x v3=%x v4=%x\n", v2, v3, v4);

Completed in 460 milliseconds

1234567891011>>