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

/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
H A DPoint.java89 float nx = this.x;
92 float ox = nx;
93 nx = ny;
96 return new Point(nx, ny);
/frameworks/rs/driver/runtime/
H A Drs_sample.c319 int lx, int ly, int nx, int ny,
327 return getSample_RGBA(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
329 return getSample_A(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
331 return getSample_LA(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
334 return getSample_565(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
336 return getSample_RGB(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
338 return getSample_L(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
504 int nx = wrapI(wrapS, iPixelU + 1, sourceW); local
509 return getBilinearSample2D(alloc, w0, w1, w2, w3, lx, ly, nx, ny, dk, dt, lod);
318 getBilinearSample2D(const Allocation_t *alloc, float w0, float w1, float w2, float w3, int lx, int ly, int nx, int ny, rs_data_kind dk, rs_data_type dt, uint32_t lod) argument
/frameworks/base/core/java/android/text/method/
H A DTouch.java163 int nx = widget.getScrollX() + (int) dx;
176 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/native/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 DGLES11Ext.java570 // C function void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )
573 int nx,
572 glNormal3xOES( 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 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/java/com/google/android/gles_jni/
H A DGLImpl.java754 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
757 float nx,
762 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
765 int nx,
756 glNormal3f( float nx, float ny, float nz ) argument
764 glNormal3x( int nx, int ny, int nz ) argument
/frameworks/native/opengl/include/GLES/
H A Dgl.h618 GL_API void GL_APIENTRY glNormal3f (GLfloat nx, GLfloat ny, GLfloat nz);
705 GL_API void GL_APIENTRY glNormal3x (GLfixed nx, GLfixed ny, GLfixed nz);
H A Dglext.h692 GL_API void GL_APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz);
732 typedef void (GL_APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz);
/frameworks/native/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.cpp2375 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2378 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2380 (GLfloat)nx,
2386 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2389 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2391 (GLfixed)nx,
2377 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2388 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp3207 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
3210 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
3212 (GLfloat)nx,
3218 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
3221 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
3223 (GLfixed)nx,
3209 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
3220 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dandroid_opengl_GLES11Ext.cpp1809 /* void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz ) */
1812 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
1814 (GLfixed)nx,
1811 android_glNormal3xOES__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
/frameworks/base/media/tests/contents/media_api/music/
H A Dtest_amr_ietf.amr118 ��lW��?Dm!)I�0<a�X��f�~t���ng @���n����<���J ������/�I��n&w� �گ�R��<�nx��6#܄�R:g��W�
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h584 void GLTrace_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz);
629 void GLTrace_glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz);
710 void GLTrace_glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz);
H A Dgltrace_api.cpp24209 void GLTrace_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) { argument
24215 // copy argument nx
24219 arg_nx->add_floatvalue(nx);
24236 glContext->hooks->gl.glNormal3f(nx, ny, nz);
25895 void GLTrace_glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) { argument
25901 // copy argument nx
25905 arg_nx->add_intvalue(nx);
25922 glContext->hooks->gl.glNormal3x(nx, ny, nz);
28805 void GLTrace_glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz) { argument
28811 // copy argument nx
[all...]

Completed in 2146 milliseconds