Searched refs:v2 (Results 251 - 275 of 802) sorted by relevance

<<11121314151617181920>>

/external/libcxx/test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/
H A Dsubtraction.pass.cpp28 std::valarray<int> v2(a2, N2);
31 v1[vb] -= v2;
H A Dxor.pass.cpp28 std::valarray<int> v2(a2, N2);
31 v1[vb] ^= v2;
/external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/
H A Datan2_valarray_valarray.pass.cpp47 std::valarray<T> v2(a2, N);
48 std::valarray<T> v3 = atan2(v1, v2);
H A Dpow_valarray_valarray.pass.cpp47 std::valarray<T> v2(a2, N);
48 std::valarray<T> v3 = pow(v1, v2);
/external/libcxx/test/std/utilities/template.bitset/bitset.members/
H A Dleft_shift.pass.cpp34 std::bitset<N> v2 = v1; local
35 assert((v1 <<= s) == (v2 << s));
H A Dleft_shift_eq.pass.cpp34 std::bitset<N> v2 = v1; local
40 assert(v1[i] == v2[i-s]);
H A Dnot_all.pass.cpp32 std::bitset<N> v2 = ~v1; local
34 assert(v2[i] == ~v1[i]);
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/v8/test/mjsunit/regress/
H A Dregress-crbug-381534.js11 var v2 = 1;
12 var arr = new Array(+0, true, 0, -0, false, undefined, null, "0", obj, v1, -(4/3), -1.3333333333333, "str", v2, 1, false);
/external/ceres-solver/internal/ceres/
H A Dconditioned_cost_function_test.cc71 double v1[kTestCostFunctionSize], v2[kTestCostFunctionSize], local
77 v2[i] = i * 10;
84 // Make a cost function that computes x - v2
85 VectorRef v2_vector(v2, kTestCostFunctionSize, 1);
110 EXPECT_DOUBLE_EQ((i + 2) * (v1[i] - v2[i]) + i * 7, result[i]);
/external/clang/test/SemaCXX/
H A Dattr-cleanup.cpp13 int v2 __attribute__((cleanup(N::c2))); // expected-error {{no member named 'c2' in namespace 'N'}} local
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DAbstractTriangle.java43 public abstract void set(Vector3f v1, Vector3f v2, Vector3f v3); argument
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.hlsl.ps.h51 dcl_input_ps linear v2.xyz
55 dp3 r0.x, v2.xyzx, v2.xyzx
60 mad r1.xyz, v2.xyzx, r0.xxxx, r0.yzwy
/external/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);
/external/eigen/test/eigen2/
H A Deigen2_smallvectors.cpp21 V2 v2(x1, x2);
24 VERIFY_IS_APPROX(x1, v2.x());
27 VERIFY_IS_APPROX(x2, v2.y());
/external/mesa3d/src/mesa/swrast/
H A Ds_aatriangle.c43 * Compute coefficients of a plane using the X,Y coords of the v0, v1, v2
48 compute_plane(const GLfloat v0[], const GLfloat v1[], const GLfloat v2[], argument
55 const GLfloat qx = v2[0] - v0[0];
56 const GLfloat qy = v2[1] - v0[1];
168 const GLfloat v2[3], GLint winx, GLint winy)
211 const GLfloat dx1 = v2[0] - v1[0];
212 const GLfloat dy1 = v2[1] - v1[1];
213 const GLfloat dx2 = v0[0] - v2[0];
214 const GLfloat dy2 = v0[1] - v2[1];
247 cross = (dx2 * (sy - v2[
167 compute_coveragef(const GLfloat v0[3], const GLfloat v1[3], const GLfloat v2[3], GLint winx, GLint winy) argument
267 rgba_aa_tri(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
278 general_aa_tri(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DViewAnimatorTest.java35 View v2 = new View(null);
38 animator.addView(v2);
43 assertEquals(v2, animator.getCurrentView());
/external/valgrind/memcheck/tests/vbit-test/
H A Dvbits.c129 equal_vbits(vbits_t v1, vbits_t v2) argument
131 assert(v1.num_bits == v2.num_bits);
134 case 1: return v1.bits.u32 == v2.bits.u32;
135 case 8: return v1.bits.u8 == v2.bits.u8;
136 case 16: return v1.bits.u16 == v2.bits.u16;
137 case 32: return v1.bits.u32 == v2.bits.u32;
138 case 64: return v1.bits.u64 == v2.bits.u64;
139 case 128: return v1.bits.u128[0] == v2.bits.u128[0] &&
140 v1.bits.u128[1] == v2.bits.u128[1];
141 case 256: return v1.bits.u256[0] == v2
348 or_vbits(vbits_t v1, vbits_t v2) argument
376 and_vbits(vbits_t v1, vbits_t v2) argument
404 concat_vbits(vbits_t v1, vbits_t v2) argument
[all...]
/external/libavc/common/armv8/
H A Dih264_deblk_chroma_av8.s103 ld2 {v2.8b, v3.8b}, [x0] //D2 = q1u , D3 = q1v
105 mov v2.d[1], v3.d[0]
109 umlal v8.8h, v2.8b, v31.8b //
112 uabd v24.16b, v2.16b , v0.16b //Q12 = ABS(q1 - q0)
113 uaddl v14.8h, v4.8b, v2.8b //
196 ld4 {v0.h, v1.h, v2.h, v3.h}[0], [x0], x1
197 ld4 {v0.h, v1.h, v2.h, v3.h}[1], [x0], x1
198 ld4 {v0.h, v1.h, v2.h, v3.h}[2], [x0], x1
199 ld4 {v0.h, v1.h, v2.h, v3.h}[3], [x0], x1
206 mov v10.16b, v2
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DVersionInfoTest.java95 VersionInfo v2 =
97 if (v1.compareTo(v2) == 0) {
104 VersionInfo v2 = getInstance(COMPARE_NOT_EQUAL_INT_[i + 1]);
105 if (v1.compareTo(v2) == 0) {
113 VersionInfo v2 =
115 if (v1.compareTo(v2) != 0) {
122 VersionInfo v2 = getInstance(COMPARE_EQUAL_INT_[i + 1]);
123 if (v1.compareTo(v2) != 0) {
130 VersionInfo v2 = VersionInfo.getInstance(COMPARE_LESS_[i + 1]);
131 if (v1.compareTo(v2) >
[all...]
/external/fio/crc/
H A Dxxhash.c179 uint32_t v2 = seed + PRIME32_2; local
186 v2 += XXH_readLE32_align((const uint32_t*)p, endian, align) * PRIME32_2; v2 = XXH_rotl32(v2, 13); v2 *= PRIME32_1; p+=4;
191 h32 = XXH_rotl32(v1, 1) + XXH_rotl32(v2, 7) + XXH_rotl32(v3, 12) + XXH_rotl32(v4, 18);
268 state->v2 = seed + PRIME32_2;
310 state->v2 += XXH_readLE32(p32, endian) * PRIME32_2; state->v2 = XXH_rotl32(state->v2, 1
322 uint32_t v2 = state->v2; local
[all...]
/external/libunwind/tests/
H A Dppc64-test-altivec.c32 register vector signed int v2; local
122 v2 = vec_init ();
130 vec_nor (v1, vec_add (v2, vec_sub (v3, vec_and (v4, vec_or (v5, v6)))));
144 vec_add (v2,
151 printf ("v2 - ");
152 vec_print (v2);
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_cull.c62 const float *v2 = header->v[2]->data[pos]; local
64 /* edge vectors: e = v0 - v2, f = v1 - v2 */
65 const float ex = v0[0] - v2[0];
66 const float ey = v0[1] - v2[1];
67 const float fx = v1[0] - v2[0];
68 const float fy = v1[1] - v2[1];
/external/libhevc/common/arm64/
H A Dihevc_itrans_recon_4x4.s139 ld1 {v2.4h},[x0],x4 //loading pi2_src 3rd row
149 saddl v7.4s, v0.4h, v2.4h //pi2_src[0] + pi2_src[2]
150 ssubl v17.4s, v0.4h, v2.4h //pi2_src[0] - pi2_src[2]
169 trn2 v2.2s, v24.2s, v26.2s
183 saddl v7.4s, v0.4h, v2.4h //pi2_src[0] + pi2_src[2]
184 ssubl v17.4s, v0.4h, v2.4h //pi2_src[0] - pi2_src[2]
205 trn2 v2.2s, v24.2s, v26.2s
215 mov v2.d[1],v3.d[0]
218 uaddw v2.8h, v2
[all...]

Completed in 3446 milliseconds

<<11121314151617181920>>