Searched refs:v2 (Results 201 - 225 of 805) sorted by relevance

1234567891011>>

/external/llvm/test/MC/AArch64/
H A Darm64-crypto.s9 sha1c.4s q0, s1, v2
10 sha1p.4s q0, s1, v2
11 sha1m.4s q0, s1, v2
12 sha1su0.4s v0, v1, v2
13 sha256h.4s q0, q1, v2
14 sha256h2.4s q0, q1, v2
15 sha256su1.4s v0, v1, v2
25 ; CHECK: sha1c.4s q0, s1, v2 ; encoding: [0x20,0x00,0x02,0x5e]
26 ; CHECK: sha1p.4s q0, s1, v2 ; encoding: [0x20,0x10,0x02,0x5e]
27 ; CHECK: sha1m.4s q0, s1, v2 ; encodin
[all...]
H A Darm64-diagno-predicate.s15 pmull v0.1q, v1.1d, v2.1d
17 // CHECK-ERROR-NEXT: pmull v0.1q, v1.1d, v2.1d
H A Dneon-simd-post-ldst-multi-elem.s66 ld1 { v0.16b, v1.16b, v2.16b }, [x0], x1
69 ld1 { v0.2d, v1.2d, v2.2d }, [x0], #48
70 ld1 { v0.8b, v1.8b, v2.8b }, [x0], x2
73 ld1 { v0.1d, v1.1d, v2.1d }, [x0], #24
74 // CHECK: ld1 { v0.16b, v1.16b, v2.16b }, [x0], x1
80 // CHECK: ld1 { v0.2d, v1.2d, v2.2d }, [x0], #48
82 // CHECK: ld1 { v0.8b, v1.8b, v2.8b }, [x0], x2
88 // CHECK: ld1 { v0.1d, v1.1d, v2.1d }, [x0], #24
95 ld1 { v0.16b, v1.16b, v2.16b, v3.16b }, [x0], x1
97 ld1 { v31.4s, v0.4s, v1.4s, v2
[all...]
H A Ddot-req-diagnostics.s10 ada .req v2.8b
12 // CHECK-ERROR: ada .req v2.8b
/external/llvm/test/MC/R600/
H A Dmubuf.s40 buffer_load_dword v1, v2, s[4:7], s1 offen
41 // CHECK: buffer_load_dword v1, v2, s[4:7], s1 offen ; encoding: [0x00,0x10,0x30,0xe0,0x02,0x01,0x01,0x01]
43 buffer_load_dword v1, v2, s[4:7], s1 offen offset:4
44 // CHECK: buffer_load_dword v1, v2, s[4:7], s1 offen offset:4 ; encoding: [0x04,0x10,0x30,0xe0,0x02,0x01,0x01,0x01]
46 buffer_load_dword v1, v2, s[4:7], s1 offen offset:4 glc
47 // CHECK: buffer_load_dword v1, v2, s[4:7], s1 offen offset:4 glc ; encoding: [0x04,0x50,0x30,0xe0,0x02,0x01,0x01,0x01]
49 buffer_load_dword v1, v2, s[4:7], s1 offen offset:4 slc
50 // CHECK: buffer_load_dword v1, v2, s[4:7], s1 offen offset:4 slc ; encoding: [0x04,0x10,0x30,0xe0,0x02,0x01,0x41,0x01]
52 buffer_load_dword v1, v2, s[4:7], s1 offen offset:4 tfe
53 // CHECK: buffer_load_dword v1, v2,
[all...]
/external/mdnsresponder/Clients/
H A DClientCommon.c59 int v2 = cstr[ 1] - '0'; local
60 int val = v0 * 100 + v1 * 10 + v2;
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DVector3D.java334 * @param v2 second vector
335 * @return angular separation between v1 and v2
338 public static double angle(Vector3D v1, Vector3D v2) { argument
340 double normProduct = v1.getNorm() * v2.getNorm();
345 double dot = dotProduct(v1, v2);
349 Vector3D v3 = crossProduct(v1, v2);
448 * @param v2 second vector
449 * @return the dot product v1.v2
451 public static double dotProduct(Vector3D v1, Vector3D v2) { argument
452 return v1.x * v2
460 crossProduct(Vector3D v1, Vector3D v2) argument
474 distance1(Vector3D v1, Vector3D v2) argument
489 distance(Vector3D v1, Vector3D v2) argument
504 distanceInf(Vector3D v1, Vector3D v2) argument
519 distanceSq(Vector3D v1, Vector3D v2) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DDormandPrince54StepInterpolator.java81 private double[] v2; field in class:DormandPrince54StepInterpolator
104 v2 = null;
122 v2 = null;
130 v2 = interpolator.v2.clone();
152 v2 = null;
175 v2 = new double[interpolatedState.length];
191 v2[i] = yDot0 - v1[i];
192 v3[i] = v1[i] - v2[i] - yDot6;
208 currentState[i] - oneMinusThetaH * (v1[i] - theta * (v2[
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_feedback.c57 const SWvertex *v1, const SWvertex *v2)
59 if (!_swrast_culltriangle(ctx, v0, v1, v2)) {
66 feedback_vertex(ctx, v2, v2);
69 feedback_vertex(ctx, v0, v2);
70 feedback_vertex(ctx, v1, v2);
71 feedback_vertex(ctx, v2, v2);
112 const SWvertex *v1, const SWvertex *v2)
114 if (!_swrast_culltriangle(ctx, v0, v1, v2)) {
56 _swrast_feedback_triangle(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
111 _swrast_select_triangle(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
[all...]
/external/eigen/test/
H A Dadjoint.cpp18 static void run(const Vec& v1, const Vec& v2, Vec& v3, const Mat& square, Scalar s1, Scalar s2) { argument
19 VERIFY(test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj(s2) * v2.dot(v3), 0));
20 VERIFY(test_isApproxWithRef(v3.dot(s1 * v1 + s2 * v2), s1*v3.dot(v1)+s2*v3.dot(v2), 0));
23 VERIFY(test_isApproxWithRef(v1.dot(square * v2), (square.adjoint() * v1).dot(v2), 0));
29 static void run(const Vec& v1, const Vec& v2, Vec& v3, const Mat& square, Scalar s1, Scalar s2) { argument
33 RealScalar ref = NumTraits<Scalar>::IsInteger ? RealScalar(0) : (std::max)((s1 * v1 + s2 * v2).norm(),v3.norm());
34 VERIFY(test_isApproxWithRef((s1 * v1 + s2 * v2)
76 v2 = VectorType::Random(rows), local
[all...]
H A Dproduct_selfadjoint.cpp28 v2 = VectorType::Random(rows), local
42 m2.template selfadjointView<Lower>().rankUpdate(v1,v2);
43 VERIFY_IS_APPROX(m2, (m1 + v1 * v2.adjoint()+ v2 * v1.adjoint()).template triangularView<Lower>().toDenseMatrix());
46 m2.template selfadjointView<Upper>().rankUpdate(-v1,s2*v2,s3);
47 VERIFY_IS_APPROX(m2, (m1 + (s3*(-v1)*(s2*v2).adjoint()+numext::conj(s3)*(s2*v2)*(-v1).adjoint())).template triangularView<Upper>().toDenseMatrix());
56 m2.block(1,1,rows-1,cols-1).template selfadjointView<Lower>().rankUpdate(v1.tail(rows-1),v2.head(cols-1));
58 m3.block(1,1,rows-1,cols-1) += v1.tail(rows-1) * v2.head(cols-1).adjoint()+ v2
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
H A DLineRegion.java27 public LineRegion(Number val1, Number v2) { argument
28 if (val1.doubleValue() < v2.doubleValue()) {
30 this.setMaxVal(v2);
32 this.setMinVal(v2);
/external/clang/test/Sema/
H A Dvector-cast.c10 t2 v2; local
13 v2 = (t2)v1; // expected-error {{invalid conversion between vector type \
15 v1 = (t1)v2; // expected-error {{invalid conversion between vector type \
17 v3 = (t3)v2;
/external/clang/test/SemaCXX/
H A Dattr-cleanup-gcc.cpp14 int v2 __attribute__((cleanup(c2))); local
/external/eigen/doc/snippets/
H A DHouseholderSequence_HouseholderSequence.cpp9 Vector3d v2(0, 0, 1);
10 cout << "The third Householder vector is: v_2 = " << v2.transpose() << endl;
21 Matrix3d H2 = Matrix3d::Identity() - h(2) * v2 * v2.adjoint();
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMapFauxverideShim.java64 K k1, V v1, K k2, V v2) {
79 K k1, V v1, K k2, V v2, K k3, V v3) {
94 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
109 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
63 of( K k1, V v1, K k2, V v2) argument
78 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
93 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
108 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
/external/icu/icu4c/source/test/intltest/
H A Dtchcfmt.h48 double v2, const char* str2,
/external/libcxx/test/std/containers/sequences/list/list.modifiers/
H A Dinsert_iter_rvalue.pass.cpp41 std::list<int> v2(3);
42 v1.insert(v2.begin(), 4);
62 std::list<int, min_allocator<int>> v2(3);
63 v1.insert(v2.begin(), 4);
/external/libcxx/test/std/numerics/numarray/template.mask.array/mask.array.assign/
H A Dmask_array.pass.cpp31 const std::valarray<int> v2(a2, N2);
34 v1[vb1] = v2[vb2];
59 std::valarray<int> v2(a2, 3);
62 std::mask_array<int> const m2 = v2[vb1];
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.h37 const float (*v2)[4] );
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/
H A Dd3d11spikysphere.hlsl.ps.h28 dcl_input_ps linear v2.xyz
32 dp3 r0.x, v2.xyzx, v2.xyzx
34 mul r0.xyz, r0.xxxx, v2.xyzx
/external/v8/test/mjsunit/regress/
H A Dregress-lazy-deopt-inlining2.js12 function f2(v0, v1, v2) { return v1; }
/external/android-mock/tests/com/google/android/testing/mocking/
H A DConstructorCreationTests.java44 public double v2; field in class:ConstructorCreationTests.TestClass
59 public TestClass(int v1, float v2) { argument
61 this.v2 = v2;
65 public TestClass(int v1, double v2) { argument
67 this.v2 = (int) v2;
/external/libvpx/libvpx/vp8/common/ppc/
H A Didctllm_altivec.asm40 vupkhsh v2, v0
42 vaddsws v6, v2, v3 ;# a1 = ip[0]+ip[8]
43 vsubsws v7, v2, v3 ;# b1 = ip[0]-ip[8]
71 vsubsws v2, v7, v4 ;# b1 - c1
75 vmrghw v5, v2, v3 ;# c0 d0 c1 d1
78 vmrglw v7, v2, v3 ;# c2 d2 c3 d3
83 vperm v2, v6, v7, v10 ;# a2 b2 c2 d2
87 vaddsws v6, v0, v2 ;# a1 = ip[0]+ip[8]
88 vsubsws v7, v0, v2 ;# b1 = ip[0]-ip[8]
100 vmulosh v2, v
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_line.c49 const float (*v2)[4]; member in struct:lp_line_info
83 float a2 = info->v2[vert_attr][i];
115 float a2 = info->v2[vert_attr][i] * info->v2[0][3];
187 constant_coef(setup, info, slot+1, info->v2[vert_attr][i], i);
244 const float (*v2)[4])
255 debug_printf(" v2[%d]: %f %f %f %f\n", i,
256 v2[i][0], v2[i][1], v2[
242 print_line(struct lp_setup_context *setup, const float (*v1)[4], const float (*v2)[4]) argument
276 try_setup_line( struct lp_setup_context *setup, const float (*v1)[4], const float (*v2)[4]) argument
[all...]

Completed in 4713 milliseconds

1234567891011>>