Searched refs:v2 (Results 26 - 50 of 83) sorted by relevance

1234

/frameworks/testing/espresso/espresso-lib-tests/src/androidTest/java/com/google/android/apps/common/testing/ui/espresso/assertion/
H A DViewAssertionsTest.java159 TextView v2 = new TextView(getInstrumentation().getTargetContext());
160 v2.setText("has content description");
161 v2.setContentDescription("content description");
166 parent.addView(v2);
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsic3DLUT.cpp133 uint4 v2 = (v + 0x7f) >> (int4)8; local
135 uchar4 ret = convert_uchar4(v2);
152 ALOGE("v2 %08x %08x %08x %08x", v2.x, v2.y, v2.z, v2.w);
H A DrsCpuIntrinsics_advsimd_Blur.S262 umlal v14.4s, v6.4h, v2.h[0]
263 umlal2 v15.4s, v6.8h, v2.h[0]
264 umlal v14.4s, v10.4h, v2.h[0]
265 umlal2 v15.4s, v10.8h, v2.h[0]
418 umlal v14.4s, v12.4h, v2.h[7]
419 umlal2 v15.4s, v12.8h, v2.h[7]
420 umlal v14.4s, v13.4h, v2.h[7]
421 umlal2 v15.4s, v13.8h, v2.h[7]
424 umlal v14.4s, v12.4h, v2.h[6]
425 umlal2 v15.4s, v12.8h, v2
[all...]
H A DrsCpuIntrinsics_advsimd_ColorMatrix.S218 vmxx_f32 \i, 4, v8.4s, v14.4s, v2.s[0]
223 vmxx_f32 \i, 4, v16.4s, v22.4s, v2.s[0]
232 vmxx_f32 \i^31, 4, v8.4s, v14.4s, v2.s[0]
237 vmxx_f32 \i^31, 4, v16.4s, v22.4s, v2.s[0]
246 vmxx_f32 \i, 4, v9.4s, v14.4s, v2.s[1]
251 vmxx_f32 \i, 4, v17.4s, v22.4s, v2.s[1]
260 vmxx_f32 \i^31, 4, v9.4s, v14.4s, v2.s[1]
265 vmxx_f32 \i^31, 4, v17.4s, v22.4s, v2.s[1]
274 vmxx_f32 \i, 4, v10.4s, v14.4s, v2.s[2]
279 vmxx_f32 \i, 4, v18.4s, v22.4s, v2
[all...]
/frameworks/rs/api/
H A Drs_core_math.spec920 arg: #2#1 v2
924 return (v1 < v2 ? v1 : v2);
934 arg: #2#1 v2
939 tmp.x = (v1.x < v2.x ? v1.x : v2.x);
940 tmp.y = (v1.y < v2.y ? v1.y : v2.y);
951 arg: #2#1 v2
956 tmp.x = (v1.x < v2
[all...]
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES31.spec22 void glProgramUniform3i ( GLuint program, GLint location, GLint v0, GLint v1, GLint v2 )
23 void glProgramUniform4i ( GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3 )
26 void glProgramUniform3ui ( GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2 )
27 void glProgramUniform4ui ( GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3 )
30 void glProgramUniform3f ( GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2 )
31 void glProgramUniform4f ( GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3 )
/frameworks/base/libs/hwui/
H A DInterpolator.cpp120 float v2 = mValues[i2];
122 return MathUtils::lerp(v1, v2, weight);
H A DFontRenderer.h163 float x2, float y2, float u2, float v2,
167 float x2, float y2, float u2, float v2,
171 float x2, float y2, float u2, float v2,
H A DFontRenderer.cpp538 float x2, float y2, float u2, float v2, float x3, float y3, float u3, float v3,
545 mCurrentCacheTexture->addQuad(x1, y1, u1, v1, x2, y2, u2, v2,
550 float x2, float y2, float u2, float v2, float x3, float y3, float u3, float v3,
558 appendMeshQuadNoClip(x1, y1, u1, v1, x2, y2, u2, v2, x3, y3, u3, v3, x4, y4, u4, v4, texture);
573 float x2, float y2, float u2, float v2, float x3, float y3, float u3, float v3,
576 appendMeshQuadNoClip(x1, y1, u1, v1, x2, y2, u2, v2, x3, y3, u3, v3, x4, y4, u4, v4, texture);
537 appendMeshQuadNoClip(float x1, float y1, float u1, float v1, float x2, float y2, float u2, float v2, float x3, float y3, float u3, float v3, float x4, float y4, float u4, float v4, CacheTexture* texture) argument
549 appendMeshQuad(float x1, float y1, float u1, float v1, float x2, float y2, float u2, float v2, float x3, float y3, float u3, float v3, float x4, float y4, float u4, float v4, CacheTexture* texture) argument
572 appendRotatedMeshQuad(float x1, float y1, float u1, float v1, float x2, float y2, float u2, float v2, float x3, float y3, float u3, float v3, float x4, float y4, float u4, float v4, CacheTexture* texture) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarHeaderView.java666 public void interpoloate(LayoutValues v1, LayoutValues v2, float t) { argument
667 timeScale = v1.timeScale * (1 - t) + v2.timeScale * t;
668 clockY = v1.clockY * (1 - t) + v2.clockY * t;
669 dateY = v1.dateY * (1 - t) + v2.dateY * t;
670 avatarScale = v1.avatarScale * (1 - t) + v2.avatarScale * t;
671 avatarX = v1.avatarX * (1 - t) + v2.avatarX * t;
672 avatarY = v1.avatarY * (1 - t) + v2.avatarY * t;
673 batteryX = v1.batteryX * (1 - t) + v2.batteryX * t;
674 batteryY = v1.batteryY * (1 - t) + v2.batteryY * t;
675 settingsTranslation = v1.settingsTranslation * (1 - t) + v2
[all...]
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.cpp65 #define CHECK_LIST_VALUE(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) do { \
68 CHECK_NODE_VALUE(v2); \
/frameworks/rs/driver/
H A DrsdScriptGroup.cpp68 obj->v2 = NULL;
H A DrsdGL.h94 float x2, float y2, float z2, float u2, float v2,
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A Dcolorcube.rs63 uint4 v2 = (v + 0x7f) >> (uint4)8;
65 uchar4 o = convert_uchar4(v2);
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A Dcolorcube.rs68 uint4 v2 = (v + 0x7f) >> (uint4)8;
70 *out = convert_uchar4(v2);
84 //rsDebug("v2", v2);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A Dcolorcube.rs63 uint4 v2 = (v + 0x7f) >> (uint4)8;
65 uchar4 o = convert_uchar4(v2);
/frameworks/base/libs/hwui/font/
H A DFont.cpp174 float v2 = glyph->mBitmapMaxV; local
176 mState->appendMeshQuad(nPenX, nPenY, u1, v2,
177 nPenX + width, nPenY, u2, v2,
203 float v2 = glyph->mBitmapMaxV; local
206 p[0].x(), p[0].y(), u1, v2,
207 p[1].x(), p[1].y(), u2, v2,
269 const float v2 = glyph->mBitmapMaxV; local
273 position->y() + destination[0].y(), u1, v2,
275 position->y() + destination[1].y(), u2, v2,
H A DCacheTexture.h158 float x2, float y2, float u2, float v2,
162 TextureVertex::set(mesh++, x2, y2, u2, v2);
157 addQuad(float x1, float y1, float u1, float v1, float x2, float y2, float u2, float v2, float x3, float y3, float u3, float v3, float x4, float y4, float u4, float v4) argument
/frameworks/native/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/native/opengl/libagl/
H A Darray.cpp659 vertex_t *v, *v0, *v1, *v2;
683 v2 = v++;
684 const uint32_t cc = v0->flags & v1->flags & v2->flags;
686 c->prims.renderTriangle(c, v0, v1, v2);
687 swap(((winding^=1) ? v1 : v0), v2);
872 vertex_t* v2; local
883 v2 = fetch_vertex(c, read_index(type, indices));
884 const uint32_t cc = v0->flags & v1->flags & v2->flags;
886 c->prims.renderTriangle(c, v0, v1, v2);
889 consumed = v2;
919 vertex_t* const v2 = fetch_vertex(c, *p++); local
933 vertex_t* const v2 = fetch_vertex(c, *p++); local
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES31.java417 // C function void glProgramUniform3i ( GLuint program, GLint location, GLint v0, GLint v1, GLint v2 )
424 int v2
427 // C function void glProgramUniform4i ( GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3 )
434 int v2,
455 // C function void glProgramUniform3ui ( GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2 )
462 int v2
465 // C function void glProgramUniform4ui ( GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3 )
472 int v2,
493 // C function void glProgramUniform3f ( GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2 )
500 float v2
429 glProgramUniform4i( int program, int location, int v0, int v1, int v2, int v3 ) argument
467 glProgramUniform4ui( int program, int location, int v0, int v1, int v2, int v3 ) argument
505 glProgramUniform4f( int program, int location, float v0, float v1, float v2, float v3 ) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp73 const float v2 = A[2][i]; local
74 D[0][i] = v0*B[0][0] + v1*B[0][1] + v2*B[0][2];
75 D[1][i] = v0*B[1][0] + v1*B[1][1] + v2*B[1][2];
76 D[2][i] = v0*B[2][0] + v1*B[2][1] + v2*B[2][2];
/frameworks/base/media/java/android/media/audiofx/
H A DAudioEffect.java596 byte[] v2 = intToByteArray(value[1]);
597 v = concatArrays(v, v2);
622 byte[] v2 = shortToByteArray(value[1]);
623 v = concatArrays(v, v2);
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DArrayMapTests.java111 private static boolean compare(Object v1, Object v2) { argument
113 return v2 == null;
115 if (v2 == null) {
118 return v1.equals(v2);
/frameworks/rs/
H A DrsFont.cpp102 float v2 = glyph->mBitmapMaxV; local
107 state->appendMeshQuad(nPenX, nPenY, 0, u1, v2,
108 nPenX + width, nPenY, 0, u2, v2,
671 float u2, float v2,
701 (*currentPos++) = v2;
668 appendMeshQuad(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

Completed in 447 milliseconds

1234