Searched defs:v1 (Results 226 - 250 of 541) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/samplecode/
H A DSampleColorFilter.cpp68 int v1 = inflate5To8(t1); local
71 int err1 = i - v1;
74 v0, err0, v1, err1, v2, err2);
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlobject.c73 lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2) { argument
75 case LUA_OPADD: return luai_numadd(NULL, v1, v2);
76 case LUA_OPSUB: return luai_numsub(NULL, v1, v2);
77 case LUA_OPMUL: return luai_nummul(NULL, v1, v2);
78 case LUA_OPDIV: return luai_numdiv(NULL, v1, v2);
79 case LUA_OPMOD: return luai_nummod(NULL, v1, v2);
80 case LUA_OPPOW: return luai_numpow(NULL, v1, v2);
81 case LUA_OPUNM: return luai_numunm(NULL, v1);
/external/chromium_org/ui/v2/src/
H A Dview_unittest.cc19 View v1; local
21 v1.AddChild(v11);
22 EXPECT_EQ(1U, v1.children().size());
26 View v1; local
28 v1.AddChild(v11);
29 EXPECT_EQ(1U, v1.children().size());
30 v1.RemoveChild(v11);
31 EXPECT_EQ(0U, v1.children().size());
35 View v1; local
38 v1
46 View v1; local
60 View v1; local
99 View v1; local
153 View v1; local
216 View v1, v11, v111, v1111, v1112; local
327 View v1, v11, v12, v111; local
409 View v1; // Starts out visible. local
451 View v1; local
[all...]
/external/chromium_org/ui/views/
H A Dview_targeter_unittest.cc462 TestMaskedView v1, v3; local
463 v1.SetBounds(0, 0, 200, 200);
466 root_view->AddChildView(&v1);
473 // Hit tests against |v1|, which has a hit test mask.
474 EXPECT_TRUE(v1.TestDoesIntersectRect(&v1, gfx::Rect(0, 0, 200, 200)));
475 EXPECT_TRUE(v1.TestDoesIntersectRect(&v1, gfx::Rect(-10, -10, 110, 12)));
476 EXPECT_TRUE(v1.TestDoesIntersectRect(&v1, gf
516 TestingView* v1 = new TestingView(); local
[all...]
/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/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/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 DImmutableBiMap.java61 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { argument
62 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1));
70 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { argument
71 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2));
80 K k1, V v1, K k2, V v2, K k3, V v3) {
82 k1, v1, k2, v2, k3, v3));
91 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
93 k1, v1, k2, v2, k3, v3, k4, v4));
102 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
104 k1, v1, k
79 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
90 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
101 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 DImmutableListMultimap.java67 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) { argument
70 builder.put(k1, v1);
77 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) { argument
80 builder.put(k1, v1);
89 K k1, V v1, K k2, V v2, K k3, V v3) {
92 builder.put(k1, v1);
102 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
105 builder.put(k1, v1);
116 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
119 builder.put(k1, v1);
88 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
101 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
115 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 DImmutableMap.java74 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) { argument
76 checkNotNull(k1), checkNotNull(v1));
84 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) { argument
85 return new RegularImmutableMap<K, V>(entryOf(k1, v1), entryOf(k2, v2));
94 K k1, V v1, K k2, V v2, K k3, V v3) {
96 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3));
105 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
107 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3), entryOf(k4, v4));
116 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
117 return new RegularImmutableMap<K, V>(entryOf(k1, v1),
93 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
115 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.java72 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1) { argument
74 builder.put(k1, v1);
83 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) { argument
85 builder.put(k1, v1);
96 K k1, V v1, K k2, V v2, K k3, V v3) {
98 builder.put(k1, v1);
110 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
112 builder.put(k1, v1);
125 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
127 builder.put(k1, v1);
95 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
109 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
124 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.java72 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) { argument
74 checkNotNull(k1), checkNotNull(v1));
77 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) { argument
78 return new RegularImmutableMap<K, V>(entryOf(k1, v1), entryOf(k2, v2));
82 K k1, V v1, K k2, V v2, K k3, V v3) {
84 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3));
88 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
90 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3), entryOf(k4, v4));
94 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
95 return new RegularImmutableMap<K, V>(entryOf(k1, v1),
81 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
87 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
93 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 DImmutableMultimap.java71 public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1) { argument
72 return ImmutableListMultimap.of(k1, v1);
78 public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2) { argument
79 return ImmutableListMultimap.of(k1, v1, k2, v2);
86 K k1, V v1, K k2, V v2, K k3, V v3) {
87 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3);
94 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
95 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4);
102 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
103 return ImmutableListMultimap.of(k1, v1, k
85 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
101 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.java67 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1) { argument
69 builder.put(k1, v1);
78 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) { argument
80 builder.put(k1, v1);
91 K k1, V v1, K k2, V v2, K k3, V v3) {
93 builder.put(k1, v1);
105 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
107 builder.put(k1, v1);
120 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);
90 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
119 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 465 milliseconds

1234567891011>>