Searched refs:v2 (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/tests/com/android/layoutlib/bridge/
H A DAndroidGraphicsTests.java52 float[] v2 = new float[9];
54 m2.getValues(v2);
57 assertEquals(v1[i], v2[i]);
/frameworks/base/opengl/libagl/
H A Dprimitives.cpp40 vertex_t* v0, vertex_t* v1, vertex_t* v2);
45 vertex_t* v0, vertex_t* v1, vertex_t* v2);
48 vertex_t* v0, vertex_t* v1, vertex_t* v2);
51 vertex_t* v0, vertex_t* v1, vertex_t* v2);
54 vertex_t* v0, vertex_t* v1, vertex_t* v2);
57 vertex_t* v0, vertex_t* v1, vertex_t* v2);
60 vertex_t* v0, vertex_t* v1, vertex_t* v2);
63 vertex_t* v0, vertex_t* v1, vertex_t* v2);
74 vertex_t* v0, vertex_t* v1, vertex_t* v2)
88 if(!(v2
73 lightTriangleDarkSmooth(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
96 lightTriangleDarkFlat(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
109 lightTriangleSmooth(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
120 lightTriangleFlat(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
159 lightTriangleDarkSmoothFog(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
167 lightTriangleDarkFlatFog(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
177 lightTriangleSmoothFog(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
185 lightTriangleFlatFog(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
236 initTriangle( vertex_t const* v0, vertex_t const* v1, vertex_t const* v2) argument
390 fetch_texcoord_impl(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
435 fetch_texcoord(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
570 primitive_nop_triangle(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
574 primitive_clip_triangle(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
614 triangle(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
631 lerp_triangle(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
715 lerp_texcoords(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
759 lerp_texcoords_w(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
826 cull_triangle(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
850 clip_triangle(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2) argument
[all...]
H A Dcopybit.cpp477 // rectangles {v0,v2} and {v1,v3} which should be identical.
486 const vec4_t& v2 = c->vc.vBuffer[2].window; local
488 int l = min(v0.x, v2.x);
489 int b = min(v0.y, v2.y);
490 int r = max(v0.x, v2.x);
491 int t = max(v0.y, v2.y);
535 const int dx02 = v2.x - v0.x;
537 const int dy02 = v2.y - v0.y;
H A Darray.cpp658 vertex_t *v, *v0, *v1, *v2;
682 v2 = v++;
683 const uint32_t cc = v0->flags & v1->flags & v2->flags;
685 c->prims.renderTriangle(c, v0, v1, v2);
686 swap(((winding^=1) ? v1 : v0), v2);
877 vertex_t* v2; local
888 v2 = fetch_vertex(c, read_index(type, indices));
889 const uint32_t cc = v0->flags & v1->flags & v2->flags;
891 c->prims.renderTriangle(c, v0, v1, v2);
894 consumed = v2;
924 vertex_t* const v2 = fetch_vertex(c, *p++); local
938 vertex_t* const v2 = fetch_vertex(c, *p++); local
[all...]
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dconceal.cpp142 uint8 *y1, *y2, *u1, *u2, *v1, *v2; local
159 v2 = prevFrame + size + (size >> 2) + chrstart;
182 oscl_memcpy(v1, v2, B_SIZE);
184 v2 += width_C;
185 oscl_memcpy(v1, v2, B_SIZE);
187 v2 += width_C;
/frameworks/base/libs/rs/java/Film/src/com/android/film/
H A DFilmStripMesh.java68 void computeNorm(Vertex v1, Vertex v2) { argument
69 float dx = v1.x - v2.x;
70 float dy = v1.y - v2.y;
71 float dz = v1.z - v2.z;
/frameworks/base/awt/java/awt/
H A DRenderingHints.java453 Object v2 = m.get(key);
454 if (!(v1 == null ? v2 == null : v1.equals(v2))) {
/frameworks/base/opengl/tests/angeles/
H A Ddemo.c169 static void vector3Sub(VECTOR3 *dest, VECTOR3 *v1, VECTOR3 *v2) argument
171 dest->x = v1->x - v2->x;
172 dest->y = v1->y - v2->y;
173 dest->z = v1->z - v2->z;
244 VECTOR3 v1, v2, n; local
259 vector3Sub(&v2, &pd, &pa);
264 * v2.x v2.y v2.z | v2
[all...]
/frameworks/base/libs/surfaceflinger/
H A DTransform.cpp94 const float v2 = A[2][i]; local
95 D[0][i] = v0*B[0][0] + v1*B[0][1] + v2*B[0][2];
96 D[1][i] = v0*B[1][0] + v1*B[1][1] + v2*B[1][2];
97 D[2][i] = v0*B[2][0] + v1*B[2][1] + v2*B[2][2];
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DMultiRectAreaOp.java195 int v2 = src2[1];
201 if (v1 >= v2) {
216 v2 = src2[i2];
217 if (v2 >= v1) {
220 dst[count++] = v2;
230 if (v1 == v2) {
238 v2 = src2[i2];
/frameworks/base/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp178 bool test(OP op, int v1, int v2);
190 bool MCameraClient::test(OP op, int v1, int v2) { argument
192 case EQ: return v1 == v2;
193 case GT: return v1 > v2;
194 case LT: return v1 < v2;
195 case GE: return v1 >= v2;
196 case LE: return v1 <= v2;
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dufunction.h128 inline result_type operator() (first_argument_type v1, second_argument_type v2) const { return (m_pfn(v1, v2)); }
194 inline result_t operator()(arg2_t v2) const { return (m_pfn (m_Value, v2)); }
H A Dutuple.h46 explicit inline tuple (const_reference v0, const_reference v1 = T(), const_reference v2 = T(), const_reference v3 = T());
103 inline tuple<N,T>::tuple (const_reference v0, const_reference v1, const_reference v2, const_reference v3) argument
107 if (N > 2) m_v[2] = v2;
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java253 ContentValues v2 = op1.resolveValueBackReferences(previousResults, previousResults.length);
254 assertEquals(expectedValues, v2);
293 values.put("v2", "43");
/frameworks/base/include/private/opengles/
H A Dgl_context.h337 vertex_t* v0, vertex_t* v1, vertex_t* v2);
544 vertex_t const* v2);
/frameworks/base/libs/ui/
H A DEventHub.cpp80 static inline int max(int v1, int v2) argument
82 return (v1 > v2) ? v1 : v2;
/frameworks/base/docs/html/resources/
H A Dresources_toc.cs239 <span class="en">Searchable Dictionary v2</span>
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp363 static int pid_compare(const void* v1, const void* v2) argument
365 //LOGI("Compare %d vs %d\n", *((const jint*)v1), *((const jint*)v2));
366 return *((const jint*)v1) - *((const jint*)v2);
/frameworks/base/libs/rs/
H A DrsScriptC_Lib.cpp725 float u2, float v2,
743 const float tex[] = {u1,v1, u2,v2, u3,v3, u4,v4};
1310 "void", "(float x1, float y1, float z1, float u1, float v1, float x2, float y2, float z2, float u2, float v2, float x3, float y3, float z3, float u3, float v3, float x4, float y4, float z4, float u4, float v4)" },
722 SC_drawQuadTexCoords(float x1, float y1, float z1, float u1, float v1, float x2, float y2, float z2, float u2, float v2, float x3, float y3, float z3, float u3, float v3, float x4, float y4, float z4, float u4, float v4) argument
/frameworks/base/services/java/com/android/server/
H A DPackageManagerService.java4532 int v2 = r2.priority;
4534 if (v1 != v2) {
4535 return (v1 > v2) ? -1 : 1;
4538 v2 = r2.preferredOrder;
4539 if (v1 != v2) {
4540 return (v1 > v2) ? -1 : 1;
4546 v2 = r2.match;
4548 return (v1 > v2) ? -1 : ((v1 < v2) ? 1 : 0);
4556 final int v2
[all...]

Completed in 704 milliseconds