Searched defs:nz (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/tools/resampler_tools/
H A Dfir.cpp107 // 2^nz >= 2^(nc/2)
111 // note that increasing nz only increases memory requirements,
229 int nz = 0; // recalculate nz as the bits needed to represent M local
230 for (int i = M-1 ; i; i>>=1, nz++);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp2494 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2497 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2501 (GLfloat)nz
2505 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2508 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2512 (GLfixed)nz
2496 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2507 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dandroid_opengl_GLES11Ext.cpp1927 /* void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz ) */
1930 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
1934 (GLfixed)nz
1929 android_glNormal3xOES__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp3211 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
3214 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
3218 (GLfloat)nz
3222 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
3225 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
3229 (GLfixed)nz
3213 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
3224 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
/frameworks/base/opengl/java/android/opengl/
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
2128 arg("nz", nz);
2131 mgl.glNormal3f(nx, ny, nz);
2135 public void glNormal3x(int nx, int ny, int nz) { argument
2139 arg("nz", nz);
2142 mgl.glNormal3x(nx, ny, nz);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp24209 void GLTrace_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) { argument
24227 // copy argument nz
24231 arg_nz->add_floatvalue(nz);
24236 glContext->hooks->gl.glNormal3f(nx, ny, nz);
25895 void GLTrace_glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) { argument
25913 // copy argument nz
25917 arg_nz->add_intvalue(nz);
25922 glContext->hooks->gl.glNormal3x(nx, ny, nz);
28805 void GLTrace_glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz) { argument
28823 // copy argument nz
[all...]

Completed in 1021 milliseconds