/device/linaro/bootloader/edk2/StdLib/LibC/Math/ |
D | e_rem_pio2.c | 80 int32_t e0,i,j,nx,n,ix,hx; in __ieee754_rem_pio2() local 164 nx = 3; in __ieee754_rem_pio2() 165 while(tx[nx-1]==zero) nx--; /* skip zero term */ in __ieee754_rem_pio2() 166 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi); in __ieee754_rem_pio2()
|
D | k_rem_pio2.c | 157 __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int32_t *ipio2) in __kernel_rem_pio2() argument 167 jx = nx-1; in __kernel_rem_pio2()
|
/device/google/contexthub/firmware/lib/libm/ |
D | ef_rem_pio2.c | 108 int e0,nx; local 188 nx = 3; 189 while(tx[nx-1]==zero) nx--; /* skip zero term */ 190 n = __kernel_rem_pio2f(tx,y,e0,nx,2,two_over_pi);
|
D | kf_rem_pio2.c | 56 int __kernel_rem_pio2f(float *x, float *y, int e0, int nx, int prec, const __int32_t *ipio2) in __kernel_rem_pio2f() argument 58 int __kernel_rem_pio2f(x,y,e0,nx,prec,ipio2) in __kernel_rem_pio2f() 59 float x[], y[]; int e0,nx,prec; __int32_t ipio2[]; in __kernel_rem_pio2f() 70 jx = nx-1;
|
/device/google/contexthub/firmware/os/algos/calibration/accelerometer/ |
D | accel_cal.c | 133 agd->nx = agd->nxb = 0; in agdReset() 302 if (PHI < asd->mean_x && ac1->agd.nx < ac1->agd.nfx) { in accelGoodData() 303 ac1->agd.nx += 1; in accelGoodData() 353 if (ac1->agd.nx == ac1->agd.nfx && ac1->agd.nxb == ac1->agd.nfxb && in accelGoodData() 393 if (ac1->agd.nx > ac1->agd.nfx || ac1->agd.nxb > ac1->agd.nfxb || in accelGoodData() 746 (unsigned)acc->ac1[0].agd.nx, (unsigned)acc->ac1[0].agd.nxb, in accelCalDebPrint() 755 (unsigned)acc->ac1[1].agd.nx, (unsigned)acc->ac1[1].agd.nxb, in accelCalDebPrint()
|
D | accel_cal.h | 80 uint32_t nx, nxb, ny, nyb, nz, nzb, nle; member
|
/device/generic/goldfish-opengl/tests/gles_android_wrapper/ |
D | gles.cpp | 181 void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) in glNormal3f() argument 183 getDispatch()->glNormal3f(nx, ny, nz); in glNormal3f() 606 void glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) in glNormal3x() argument 608 getDispatch()->glNormal3x(nx, ny, nz); in glNormal3x() 971 void glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz) in glNormal3xOES() argument 973 getDispatch()->glNormal3xOES(nx, ny, nz); in glNormal3xOES()
|
/device/generic/goldfish-opengl/system/GLESv1_enc/ |
D | gl_entry.cpp | 33 void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz); 117 void glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz); 210 void glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz); 457 void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) in glNormal3f() argument 460 ctx->glNormal3f(ctx, nx, ny, nz); in glNormal3f() 965 void glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) in glNormal3x() argument 968 ctx->glNormal3x(ctx, nx, ny, nz); in glNormal3x() 1523 void glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz) in glNormal3xOES() argument 1526 ctx->glNormal3xOES(ctx, nx, ny, nz); in glNormal3xOES()
|
D | gl_enc.cpp | 777 void glNormal3f_enc(void *self , GLfloat nx, GLfloat ny, GLfloat nz) in glNormal3f_enc() argument 795 memcpy(ptr, &nx, 4); ptr += 4; in glNormal3f_enc() 3144 void glNormal3x_enc(void *self , GLfixed nx, GLfixed ny, GLfixed nz) in glNormal3x_enc() argument 3162 memcpy(ptr, &nx, 4); ptr += 4; in glNormal3x_enc() 5750 void glNormal3xOES_enc(void *self , GLfixed nx, GLfixed ny, GLfixed nz) in glNormal3xOES_enc() argument 5768 memcpy(ptr, &nx, 4); ptr += 4; in glNormal3xOES_enc()
|
/device/generic/goldfish-opengl/system/include/GLES/ |
D | 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);
|
D | glext.h | 692 GL_API void GL_APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz); 732 typedef void (GL_APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz);
|
/device/linaro/bootloader/edk2/OvmfPkg/ |
D | README | 150 $ qemu-system-i386 -cpu coreduo,-nx \ 154 $ qemu-system-x86_64 -cpu <MODEL>,-lm,-nx \
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_set.py | 1650 nx = [frozenset([x,z]) for z in G[x] if z != y] 1652 L[frozenset([x,y])] = frozenset(nx+ny)
|