Home
last modified time | relevance | path

Searched refs:z1 (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/services/core/java/com/android/server/power/
DWirelessChargerDetector.java345 private static boolean hasMoved(float x1, float y1, float z1, in hasMoved() argument
347 final double dotProduct = (x1 * x2) + (y1 * y2) + (z1 * z2); in hasMoved()
348 final double mag1 = Math.sqrt((x1 * x1) + (y1 * y1) + (z1 * z1)); in hasMoved()
360 + ", x1=" + x1 + ", y1=" + y1 + ", z1=" + z1 in hasMoved()
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Dcolorcube.rscript60 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (uint4)16;
62 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (uint4)16;
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Dcolorcube.rscript60 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (uint4)16;
62 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (uint4)16;
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Dcolorcube.rscript60 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (uint4)16;
62 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (uint4)16;
/frameworks/base/core/java/android/util/
DMathUtils.java108 public static float dist(float x1, float y1, float z1, float x2, float y2, float z2) { in dist() argument
111 final float z = (z2 - z1); in dist()
/frameworks/base/core/jni/android/opengl/
Dutil.cpp336 float z1 = z0; in util_computeBoundingSphere() local
362 else if (z > z1) { in util_computeBoundingSphere()
363 z1 = z; in util_computeBoundingSphere()
373 float dz = z1 - z0; in util_computeBoundingSphere()
389 static inline float dot3(float x0, float y0, float z0, float x1, float y1, float z1) { in dot3() argument
390 return x0 * x1 + y0 * y1 + z0 * z1; in dot3()
/frameworks/rs/cpu_ref/
DrsCpuIntrinsic3DLUT.cpp123 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (int4)15; in kernel() local
125 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (int4)15; in kernel()
/frameworks/rs/driver/
DrsdGL.h90 float x1, float y1, float z1, float u1, float v1,
DrsdRuntimeStubs.cpp853 static void SC_DrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1, argument
874 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4};
887 static void SC_DrawQuad(float x1, float y1, float z1, argument
891 SC_DrawQuadTexCoords(x1, y1, z1, 0, 1,
1025 void rsgDrawQuad(float x1, float y1, float z1, argument
1029 SC_DrawQuad(x1, y1, z1,
1035 void rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1, argument
1039 SC_DrawQuadTexCoords(x1, y1, z1, u1, v1,
DrsdGL.cpp541 float x1, float y1, float z1, float u1, float v1, in rsdGLDrawQuadTexCoords() argument
546 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4}; in rsdGLDrawQuadTexCoords()
/frameworks/rs/script_api/
Drs_graphics.spec486 arg: float z1
510 arg: float z1
699 float x1, y1, z1, x2, y2, z2;
700 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2);
703 bBoxMin->z = z1;
/frameworks/rs/
DrsFont.h246 void appendMeshQuad(float x1, float y1, float z1,
DrsFont.cpp663 void FontState::appendMeshQuad(float x1, float y1, float z1, in appendMeshQuad() argument
686 (*currentPos++) = z1; in appendMeshQuad()
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Drasterize.rscript49 // string(solve([x1*dx+y1*dy+zoff=z1,x2*dx+y2*dy+zoff=z2,x3*dx+y3*dy+zoff=z3],[dx,dy,zoff]));
/frameworks/rs/script_api/include/
Drs_graphics.rsh816 rsgDrawQuad(float x1, float y1, float z1, float x2, float y2, float z2, float x3, float y3,
836 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1, float x2, float y2,
1046 float x1, y1, z1, x2, y2, z2;
1047 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2);
1050 bBoxMin->z = z1;