Searched defs:ny (Results 1 - 10 of 10) sorted by relevance

/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);
501 int ny = wrapI(wrapT, iPixelV + 1, sourceH); local
505 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/opengl/java/android/opengl/
H A DGLES11Ext.java570 // C function void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )
574 int ny,
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 DGLES10.java929 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
933 float ny,
937 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
941 int ny,
931 glNormal3f( float nx, float ny, float nz ) argument
939 glNormal3x( int nx, int ny, int nz ) argument
H A DGLLogWrapper.java2124 public void glNormal3f(float nx, float ny, float nz) { argument
2127 arg("ny", ny);
2131 mgl.glNormal3f(nx, ny, nz);
2135 public void glNormal3x(int nx, int ny, int nz) { argument
2138 arg("ny", ny);
2142 mgl.glNormal3x(nx, ny, nz);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp2663 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2666 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2669 (GLfloat)ny,
2674 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2677 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2680 (GLfixed)ny,
2665 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2676 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dandroid_opengl_GLES11Ext.cpp2166 /* void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2169 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2172 (GLfixed)ny,
2168 android_glNormal3xOES__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp3375 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
3378 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
3381 (GLfloat)ny,
3386 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
3389 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
3392 (GLfixed)ny,
3377 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
3388 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint 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 )
758 float ny,
762 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
766 int ny,
756 glNormal3f( float nx, float ny, float nz ) argument
764 glNormal3x( int nx, int ny, int nz ) argument
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java729 float ny,
735 int ny,
727 glNormal3f( float nx, float ny, float nz ) argument
733 glNormal3x( int nx, int ny, int nz ) argument

Completed in 114 milliseconds