HomeSort by relevance Sort by last modified time
    Searched defs:lz (Results 1 - 9 of 9) sorted by null

  /bionic/libm/src/
e_fmod.c 33 u_int32_t lx,ly,lz; local
98 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
101 if((hz|lz)==0) /* return sign(x)*0 */
103 hx = hz+hz+(lz>>31); lx = lz+lz;
106 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
107 if(hz>=0) {hx=hz;lx=lz;}
s_remquo.c 33 u_int32_t lx,ly,lz,q,sxy; local
105 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
107 else {hx = hz+hz+(lz>>31); lx = lz+lz; q++;}
110 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
111 if(hz>=0) {hx=hz;lx=lz;q++;}
  /external/fdlibm/
e_fmod.c 36 unsigned lx,ly,lz; local
103 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
106 if((hz|lz)==0) /* return sign(x)*0 */
108 hx = hz+hz+(lz>>31); lx = lz+lz;
111 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
112 if(hz>=0) {hx=hz;lx=lz;}
  /external/skia/src/effects/
SkEmbossMask.cpp 103 SkFixed lz = SkScalarToFixed(light.fDirection[2]); local
104 SkFixed lz_dot_nz = lz * kDelta;
105 int lz_dot8 = lz >> 8;
  /system/core/libpixelflinger/
fixed.cpp 40 const int32_t lz = gglClz(a); local
41 a <<= lz; // 0.32 local
55 *exponent = 30-lz-1;
93 const int32_t lz = gglClz(x); local
94 x = ggl_sqrt_reciproc_approx_tab[(a>>(28-lz))&0x7];
95 const int32_t exp = lz - 16;
  /system/core/include/private/pixelflinger/
ggl_fixed.h 272 const int32_t lz = gglClz(x); local
273 return (0xC0000000 - (x << (lz - 1))) >> (30-lz);
  /external/skia/src/core/
SkMath.cpp 238 int lz = SkCLZ(a); local
239 a = a << lz >> 16;
247 r = ( (0x10000 - ((a*r)>>16)) * r ) >> (30 - lz);
  /frameworks/base/services/surfaceflinger/
SurfaceFlinger.h 271 uint32_t lz = l->currentState().z; local
274 return (lz != rz) ? (lz - rz) : (l->sequence - r->sequence);
  /external/qemu/android/skin/
trackball.c 342 double lz = LIGHT_Z - rz; local
343 double lir = 1/sqrt(lx*lx + ly*ly + lz*lz);
344 double cosphi = lir*(lx*rx + ly*ry + lz*rz);

Completed in 2133 milliseconds