Searched refs:nx (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/libs/rs/java/Film/src/com/android/film/
H A DFilmStripMesh.java31 float nx; field in class:FilmStripMesh.Vertex
41 nx = 0;
58 nx = _x;
77 nx = dx * dz;
81 len = (float)java.lang.Math.sqrt(nx*nx + ny*ny + nz*nz);
82 nx /= len;
224 t.nx = (vtx[ct*2+3] - vtx[ct*2 +1]);
226 float len = (float)java.lang.Math.sqrt(t.nx * t.nx
[all...]
/frameworks/base/awt/java/awt/geom/
H A DArc2D.java1054 double nx = (px - getX()) / getWidth() - 0.5;
1057 if ((nx * nx + ny * ny) > 0.25) {
1067 boolean containsAngle = containsAngle(Math.toDegrees(-Math.atan2(ny, nx)));
1148 double nx = cx < rx ? rx : (cx > rx + rw ? rx + rw : cx);
1150 return contains(nx, ny);
H A DEllipse2D.java436 double nx = cx < rx1 ? rx1 : (cx > rx2 ? rx2 : cx);
439 return contains(nx, ny);
H A DRoundRectangle2D.java612 double nx = cx < rx1 ? rx1 : (cx > rx2 ? rx2 : cx);
615 return contains(nx, ny);
/frameworks/base/core/java/android/text/method/
H A DTouch.java161 int nx = widget.getScrollX() + (int) dx;
175 scrollTo(widget, layout, nx, ny);
/frameworks/base/core/java/android/gesture/
H A DGestureUtils.java299 float nx = lstPointX + ratio * deltaX;
301 vector[index] = nx;
305 lstPointX = nx;
/frameworks/base/opengl/tools/glgen/specs/gles11/
H A DGLES10.spec70 void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
71 void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
H A DGLES11Ext.spec39 void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )
/frameworks/base/opengl/java/android/opengl/
H A DGLES10.java929 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
932 float nx,
937 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
940 int nx,
931 glNormal3f( float nx, float ny, float nz ) argument
939 glNormal3x( int nx, int ny, int nz ) argument
H A DGLErrorWrapper.java589 public void glNormal3f(float nx, float ny, float nz) { argument
591 mgl.glNormal3f(nx, ny, nz);
595 public void glNormal3x(int nx, int ny, int nz) { argument
597 mgl.glNormal3x(nx, ny, nz);
H A DGLES11Ext.java566 // C function void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )
569 int nx,
568 glNormal3xOES( int nx, int ny, int nz ) argument
H A DGLLogWrapper.java2124 public void glNormal3f(float nx, float ny, float nz) { argument
2126 arg("nx", nx);
2131 mgl.glNormal3f(nx, ny, nz);
2135 public void glNormal3x(int nx, int ny, int nz) { argument
2137 arg("nx", nx);
2142 mgl.glNormal3x(nx, ny, nz);
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java728 float nx,
734 int nx,
727 glNormal3f( float nx, float ny, float nz ) argument
733 glNormal3x( int nx, int ny, int nz ) argument
/frameworks/base/opengl/include/GLES/
H A Dgl.h617 GL_API void GL_APIENTRY glNormal3f (GLfloat nx, GLfloat ny, GLfloat nz);
704 GL_API void GL_APIENTRY glNormal3x (GLfixed nx, GLfixed ny, GLfixed nz);
H A Dglext.h360 GL_API void GL_APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz);
400 typedef void (GL_APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz);
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java753 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
756 float nx,
761 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
764 int nx,
755 glNormal3f( float nx, float ny, float nz ) argument
763 glNormal3x( int nx, int ny, int nz ) argument
/frameworks/base/opengl/tests/angeles/include/GLES/
H A Dgl.h542 GLAPI void APIENTRY glNormal3f (GLfloat nx, GLfloat ny, GLfloat nz);
543 GLAPI void APIENTRY glNormal3x (GLfixed nx, GLfixed ny, GLfixed nz);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp2763 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2766 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2768 (GLfloat)nx,
2774 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2777 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2779 (GLfixed)nx,
2765 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2776 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dandroid_opengl_GLES11Ext.cpp1343 /* void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz ) */
1346 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
1348 (GLfixed)nx,
1345 android_glNormal3xOES__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp2889 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2892 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2894 (GLfloat)nx,
2900 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2903 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2905 (GLfixed)nx,
2891 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2902 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
/frameworks/base/awt/java/awt/
H A DBasicStroke.java1917 double nx = x1 + x3 - x2 - x2;
1920 int n = (int)(1 + Math.sqrt(0.75 * (Math.abs(nx) + Math.abs(ny)) * FLATNESS));

Completed in 703 milliseconds