HomeSort by relevance Sort by last modified time
    Searched refs:nz (Results 1 - 25 of 59) sorted by null

1 2 3

  /frameworks/base/tests/CoreTests/android/core/
FloatDoubleTest.java 44 float nz = -0.0f; local
51 assertTrue(pz == nz);
55 assertTrue(nz == pz);
56 assertTrue(nz == nz);
57 assertTrue(nz == pzero);
58 assertTrue(nz == nzero);
61 assertTrue(pzero == nz);
66 assertTrue(nzero == nz);
72 assertTrue(!Float.valueOf(pz).equals(Float.valueOf(nz)));
100 double nz = -0.0; local
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9/
3d-morph.js 28 var nz = 120
35 for (var i = 0; i < nz; ++i) {
44 for (var i=0; i < nx*nz*3; ++i)
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
3d-morph.js 28 var nz = 120
35 for (var i = 0; i < nz; ++i) {
44 for (var i=0; i < nx*nz*3; ++i)
  /frameworks/base/libs/rs/java/Film/src/com/android/film/
FilmStripMesh.java 33 float nz; field in class:FilmStripMesh.Vertex
43 nz = 0;
60 nz = _z;
79 nz = (float)java.lang.Math.sqrt(dx*dx + dy*dy);
81 len = (float)java.lang.Math.sqrt(nx*nx + ny*ny + nz*nz);
84 nz /= len;
232 tm.setNormal(t.nx, t.ny, t.nz);
  /external/v8/test/mjsunit/
negate-zero.js 36 var nz = -0; variable
38 assertTrue(IsNegativeZero(nz), "-0");
39 assertFalse(IsNegativeZero(-nz), "-(-0)");
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CubeMapActivity.java 182 float nz = sinU; local
184 float length = (float) Math.sqrt(nx*nx + ny*ny + nz*nz);
187 nz /= length;
189 grid.set(i, j, x, y, z, nx, ny, nz);
317 public void set(int i, int j, float x, float y, float z, float nx, float ny, float nz) {
333 mVertexBuffer.put(nz);
  /bionic/libc/stdlib/
strtod.c 1335 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; local
1355 sign = nz0 = nz = 0;
1426 nz++;
1429 nf += nz;
1430 nz = 0;
1437 nz++;
1439 nf += nz;
1440 for(i = 1; i < nz; i++)
1449 nz = 0;
1456 if (!nd && !nz && !nz0)
    [all...]
  /external/v8/src/third_party/dtoa/
dtoa.c 1539 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; local
    [all...]
  /external/webkit/JavaScriptCore/wtf/
dtoa.cpp 1105 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; local
1116 sign = nz0 = nz = 0;
1158 nz++;
1161 nf += nz;
1162 nz = 0;
1169 nz++;
1171 nf += nz;
1172 for (i = 1; i < nz; i++)
1181 nz = 0;
1188 if (!nd && !nz && !nz0)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 478 public void glNormal3f(float nx, float ny, float nz) {
479 mgl.glNormal3f(nx, ny, nz);
482 public void glNormal3x(int nx, int ny, int nz) {
483 mgl.glNormal3x(nx, ny, nz);
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3drm.h 74 D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DRM.H 74 D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
  /frameworks/base/opengl/tools/glgen/specs/gles11/
GLES10.spec 70 void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
71 void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
GLES11Ext.spec 39 void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_glfuncs.h 184 SDL_PROC_UNUSED(void,glNormal3b,(GLbyte nx, GLbyte ny, GLbyte nz))
186 SDL_PROC_UNUSED(void,glNormal3d,(GLdouble nx, GLdouble ny, GLdouble nz))
188 SDL_PROC_UNUSED(void,glNormal3f,(GLfloat nx, GLfloat ny, GLfloat nz))
190 SDL_PROC_UNUSED(void,glNormal3i,(GLint nx, GLint ny, GLint nz))
192 SDL_PROC_UNUSED(void,glNormal3s,(GLshort nx, GLshort ny, GLshort nz))
  /frameworks/base/opengl/java/android/opengl/
GLES10.java     [all...]
GLErrorWrapper.java 589 public void glNormal3f(float nx, float ny, float nz) {
591 mgl.glNormal3f(nx, ny, nz);
595 public void glNormal3x(int nx, int ny, int nz) {
597 mgl.glNormal3x(nx, ny, nz);
    [all...]
GLES11Ext.java 566 // C function void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )
571 int nz
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 730 float nz
736 int nz
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 2433 int esign, i, j, k, nd, nd0, nf, nz, nz0, sign; variable
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
JSON-parse.js 138 return jsonObject.parse('"a\nz"');
142 return jsonObject.parse('"a\\nz"');
  /development/ndk/platforms/android-4/include/GLES/
gl.h 617 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);
    [all...]
glext.h 360 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/include/GLES/
gl.h 618 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);
    [all...]
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 753 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
758 float nz
761 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
766 int nz
    [all...]

Completed in 639 milliseconds

1 2 3