Searched defs:v1 (Results 151 - 175 of 388) sorted by relevance

1234567891011>>

/external/robolectric/lib/main/
H A Dxpp3-1.1.4c.jar ... INF/services/ META-INF/services/org.xmlpull.v1.XmlPullParserFactory XPP3_1.1.4c_VERSION javax/ javax/xml/ javax ...
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DRotation.java309 * @param v1 desired image of u1 by the rotation
313 public Rotation(Vector3D u1, Vector3D u2, Vector3D v1, Vector3D v2) { argument
318 double v1v1 = Vector3D.dotProduct(v1, v1);
332 // normalize v1 in order to have (v1'|v1') = (u1|u1)
334 double v1x = coeff * v1.getX();
335 double v1y = coeff * v1.getY();
336 double v1z = coeff * v1
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DArrayFieldVector.java213 * @param v1 first vector (will be put in front of the new vector)
216 public ArrayFieldVector(ArrayFieldVector<T> v1, ArrayFieldVector<T> v2) { argument
217 field = v1.getField();
218 data = buildArray(v1.data.length + v2.data.length);
219 System.arraycopy(v1.data, 0, data, 0, v1.data.length);
220 System.arraycopy(v2.data, 0, data, v1.data.length, v2.data.length);
225 * @param v1 first vector (will be put in front of the new vector)
228 public ArrayFieldVector(ArrayFieldVector<T> v1, T[] v2) { argument
229 field = v1
240 ArrayFieldVector(T[] v1, ArrayFieldVector<T> v2) argument
260 ArrayFieldVector(T[] v1, T[] v2) argument
279 ArrayFieldVector(Field<T> field, T[] v1, T[] v2) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNodeVector.java241 * @param v1 First node to add to vector
244 public final void pushPair(int v1, int v2) argument
266 m_map[m_firstFree] = v1;
/external/boringssl/src/decrepit/cast/
H A Dcast.c365 uint32_t v0, v1, t; local
377 n2l(iv, v1);
378 ti[1] = v1;
397 n2l(iv, v1);
398 ti[1] = v1;
414 v0 = v1 = ti[0] = ti[1] = t = c = cc = 0;
/external/boringssl/src/ssl/
H A Dd1_pkt.c126 static int satsub64be(const uint8_t *v1, const uint8_t *v2) { argument
143 if (((size_t)v1 | (size_t)v2) & 0x7) {
147 l = *((long *)v1);
159 ret = (int)v1[7] - (int)v2[7];
164 brw += (int)v1[i] - (int)v2[i];
170 brw += (int)v1[i] - (int)v2[i];
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp4.cpp56 U<int*>::V<> v1; member in namespace:PR11850
58 char &v1f = v1.g(0);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp2-0x.cpp105 template<typename T> int v1; // expected-note +{{here}} variable
106 template<> extern int v1<char[3]>;
107 template<> extern int v1<char[4]>;
108 template<> extern int v1<char[7]>;
109 template<> extern int v1<char[8]>;
113 template<> int ::v1<int[3]>; // expected-warning {{extra qualification}} variable
114 template<> int v1<int[4]>; variable
118 template<> int ::v1<char[3]>; // expected-warning {{extra qualification}} variable
119 template<> int v1<char[4]>; variable
124 template<> int ::v1<in member in namespace:N1
125 template<> int v1<int[8]>; // expected-error {{must originally be declared in the global scope}} member in namespace:N1
129 template<> int ::v1<char[7]>; // expected-error {{cannot name the global scope}} member in namespace:N1
130 template<> int v1<char[8]>; // FIXME: ill-formed member in namespace:N1
[all...]
/external/clang/test/SemaCXX/
H A Denum.cpp48 enum enum1 { v1 = __INT_MAX__ }; enumerator in enum:test1::enum1
49 int test1[is_same<__typeof(+v1), int>::value];
H A Dqualified-id-lookup.cpp70 int &v1 = N::f1(); local
/external/clang/test/SemaTemplate/
H A Dinstantiate-function-1.cpp145 U f(T value, U v0, U v1, U v2) { argument
149 case 1: return v1;
/external/compiler-rt/lib/asan/
H A Dasan_rtl.cc67 u64 v1, u64 v2) {
69 line, cond, (uptr)v1, (uptr)v2);
66 AsanCheckFailed(const char *file, int line, const char *cond, u64 v1, u64 v2) argument
/external/deqp/framework/referencerenderer/
H A DrrPrimitiveAssembler.hpp43 , v1 (DE_NULL)
51 , v1 (v1_)
62 case 1: return v1;
71 VertexPacket* v1; member in struct:rr::pa::Triangle
172 , v1 (DE_NULL)
179 , v1 (v1_)
189 case 1: return v1;
197 VertexPacket* v1; member in struct:rr::pa::Line
319 , v1 (DE_NULL)
328 , v1 (v1
348 VertexPacket* v1; member in struct:rr::pa::LineAdjacency
432 VertexPacket* v1; //!< adjacent member in struct:rr::pa::TriangleAdjacency
[all...]
/external/deqp/modules/glshared/
H A DglsRasterizationTestUtil.cpp57 const I64Vec2 v1 = line1End - line0Beg; local
59 const deInt64 crossProduct1 = (line.x() * v1.y() - line.y() * v1.x());
71 const I64Vec2 v1 = line0End - line1Beg; local
73 const deInt64 crossProduct1 = (line.x() * v1.y() - line.y() * v1.x());
/external/eigen/test/eigen2/
H A Deigen2_geometry.cpp41 v1 = Vector3::Random(), local
49 VERIFY_IS_MUCH_SMALLER_THAN(v1.cross(v2).eigen2_dot(v1), Scalar(1));
52 (v0.cross(v1)).normalized(),
53 (v0.cross(v1).cross(v0)).normalized();
78 q2 = AngleAxisx(a, v1.normalized());
99 VERIFY_IS_APPROX(q1*v1,q2*v1);
104 VERIFY_IS_APPROX(matrot1 * v1,
107 * (AngleAxisx(Scalar(0.3), Vector3(0,0,1)).toRotationMatrix() * v1)));
[all...]
H A Deigen2_geometry_with_eigen2_prefix.cpp43 v1 = Vector3::Random(), local
51 VERIFY_IS_MUCH_SMALLER_THAN(v1.cross(v2).eigen2_dot(v1), Scalar(1));
54 (v0.cross(v1)).normalized(),
55 (v0.cross(v1).cross(v0)).normalized();
80 q2 = AngleAxisx(a, v1.normalized());
101 VERIFY_IS_APPROX(q1*v1,q2*v1);
106 VERIFY_IS_APPROX(matrot1 * v1,
109 * (AngleAxisx(Scalar(0.3), Vector3(0,0,1)).toRotationMatrix() * v1)));
[all...]
/external/eigen/test/
H A Dref.cpp103 VectorType v1 = VectorType::Random(size), local
104 v2 = v1;
112 RefMat rm0 = v1;
113 VERIFY_IS_EQUAL(rm0, v1);
114 RefDynMat rv1 = v1;
115 VERIFY_IS_EQUAL(rv1, v1);
116 RefDynMat rv2 = v1.segment(i,bsize);
117 VERIFY_IS_EQUAL(rv2, v1.segment(i,bsize));
120 VERIFY_IS_EQUAL(v1, v2);
124 VERIFY_IS_EQUAL(v1, v
[all...]
H A Dsparse_product.cpp159 DenseVector v1 = DenseVector::Random(cols); local
161 VERIFY_IS_APPROX(m3=m2*v1.asDiagonal(), refM3=refM2*v1.asDiagonal());
164 VERIFY_IS_APPROX(m3=v1.asDiagonal()*m2.transpose(), refM3=v1.asDiagonal()*refM2.transpose());
166 VERIFY_IS_APPROX(m3=v2.asDiagonal()*m2*v1.asDiagonal(), refM3=v2.asDiagonal()*refM2*v1.asDiagonal());
/external/eigen/unsupported/Eigen/src/BVH/
H A DKdBVH.h176 inline bool operator()(const VIPair &v1, const VIPair &v2) const { return v1.first[dim] < v2.first[dim]; } argument
/external/fio/crc/
H A Dxxhash.c178 uint32_t v1 = seed + PRIME32_1 + PRIME32_2; local
185 v1 += XXH_readLE32_align((const uint32_t*)p, endian, align) * PRIME32_2; v1 = XXH_rotl32(v1, 13); v1 *= PRIME32_1; p+=4;
191 h32 = XXH_rotl32(v1, 1) + XXH_rotl32(v2, 7) + XXH_rotl32(v3, 12) + XXH_rotl32(v4, 18);
267 state->v1 = seed + PRIME32_1 + PRIME32_2;
309 state->v1 += XXH_readLE32(p32, endian) * PRIME32_2; state->v1 = XXH_rotl32(state->v1, 1
321 uint32_t v1 = state->v1; local
[all...]
/external/google-breakpad/src/testing/gtest/include/gtest/
H A Dgtest_pred_impl.h46 // ASSERT_PRED_FORMAT1(pred_format, v1)
47 // ASSERT_PRED_FORMAT2(pred_format, v1, v2)
58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
63 // and the values v1, v2, ..., must support the << operator for
90 const T1& v1) {
91 if (pred(v1)) return AssertionSuccess();
95 << "\n" << e1 << " evaluates to " << v1;
100 #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\
101 GTEST_ASSERT_(pred_format(#v1, v
87 AssertPred1Helper(const char* pred_text, const char* e1, Pred pred, const T1& v1) argument
129 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) argument
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/gtest/include/gtest/
H A Dgtest_pred_impl.h46 // ASSERT_PRED_FORMAT1(pred_format, v1)
47 // ASSERT_PRED_FORMAT2(pred_format, v1, v2)
58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
63 // and the values v1, v2, ..., must support the << operator for
90 const T1& v1) {
91 if (pred(v1)) return AssertionSuccess();
95 << "\n" << e1 << " evaluates to " << v1;
100 #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\
101 GTEST_ASSERT_(pred_format(#v1, v
87 AssertPred1Helper(const char* pred_text, const char* e1, Pred pred, const T1& v1) argument
129 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) argument
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DImmutableListMultimap.java70 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) { argument
73 builder.put(k1, v1);
80 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) { argument
83 builder.put(k1, v1);
92 K k1, V v1, K k2, V v2, K k3, V v3) {
95 builder.put(k1, v1);
105 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
108 builder.put(k1, v1);
119 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
122 builder.put(k1, v1);
91 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
104 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
118 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
[all...]
H A DImmutableSetMultimap.java79 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1) { argument
81 builder.put(k1, v1);
90 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) { argument
92 builder.put(k1, v1);
103 K k1, V v1, K k2, V v2, K k3, V v3) {
105 builder.put(k1, v1);
117 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
119 builder.put(k1, v1);
132 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
134 builder.put(k1, v1);
102 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
116 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
131 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableMap.java51 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) { argument
52 return ImmutableBiMap.of(k1, v1);
55 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) { argument
56 return new RegularImmutableMap<K, V>(entryOf(k1, v1), entryOf(k2, v2));
60 K k1, V v1, K k2, V v2, K k3, V v3) {
62 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3));
66 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
68 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3), entryOf(k4, v4));
72 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
73 return new RegularImmutableMap<K, V>(entryOf(k1, v1),
59 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
65 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
71 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
[all...]

Completed in 772 milliseconds

1234567891011>>