Home
last modified time | relevance | path

Searched refs:nx (Results 1 – 13 of 13) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Math/
De_rem_pio2.c80 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()
Dk_rem_pio2.c157 __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/
Def_rem_pio2.c108 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);
Dkf_rem_pio2.c56 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/
Daccel_cal.c133 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()
Daccel_cal.h80 uint32_t nx, nxb, ny, nyb, nz, nzb, nle; member
/device/generic/goldfish-opengl/tests/gles_android_wrapper/
Dgles.cpp181 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/
Dgl_entry.cpp33 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()
Dgl_enc.cpp777 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/
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);
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);
/device/linaro/bootloader/edk2/OvmfPkg/
DREADME150 $ 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/
Dtest_set.py1650 nx = [frozenset([x,z]) for z in G[x] if z != y]
1652 L[frozenset([x,y])] = frozenset(nx+ny)