HomeSort by relevance Sort by last modified time
    Searched refs:ix0 (Results 1 - 10 of 10) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_sqrt.c 99 int32_t ix0,s0,q,m,t,i; local
102 EXTRACT_WORDS(ix0,ix1,x);
105 if((ix0&0x7ff00000)==0x7ff00000) {
110 if(ix0<=0) {
111 if(((ix0&(~sign))|ix1)==0) return x;/* sqrt(+-0) = +-0 */
112 else if(ix0<0)
116 m = (ix0>>20);
118 while(ix0==0) {
120 ix0 |= (ix1>>11); ix1 <<= 21;
122 for(i=0;(ix0&0x00100000)==0;i++) ix0<<=1
    [all...]
math_private.h 26 * ix0 = *(n0+(int*)&x); * high word of x *
89 #define EXTRACT_WORDS(ix0,ix1,d) \
93 (ix0) = ew_u.parts.msw; \
125 #define INSERT_WORDS(d,ix0,ix1) \
128 iw_u.parts.msw = (ix0); \
  /external/fdlibm/
e_sqrt.c 101 int ix0,s0,q,m,t,i; local
103 ix0 = __HI(x); /* high word of x */
107 if((ix0&0x7ff00000)==0x7ff00000) {
112 if(ix0<=0) {
113 if(((ix0&(~sign))|ix1)==0) return x;/* ieee_sqrt(+-0) = +-0 */
114 else if(ix0<0)
118 m = (ix0>>20);
120 while(ix0==0) {
122 ix0 |= (ix1>>11); ix1 <<= 21;
124 for(i=0;(ix0&0x00100000)==0;i++) ix0<<=1
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
e_sqrt.h 145 int32_t ix0,s0,q,m,t,i; local
148 EXTRACT_WORDS(ix0,ix1,x);
151 if((ix0&0x7ff00000)==0x7ff00000) {
156 if(ix0<=0) {
157 if(((ix0&(~sign))|ix1)==0) return x;/* sqrt(+-0) = +-0 */
158 else if(ix0<0)
162 m = (ix0>>20);
164 while(ix0==0) {
166 ix0 |= (ix1>>11); ix1 <<= 21;
168 for(i=0;(ix0&0x00100000)==0;i++) ix0<<=1
    [all...]
math_private.h 28 ix0 = *(n0+(int*)&x); * high word of x *
75 #define EXTRACT_WORDS(ix0,ix1,d) \
79 (ix0) = ew_u.parts.msw; \
103 #define INSERT_WORDS(d,ix0,ix1) \
106 iw_u.parts.msw = (ix0); \
  /ndk/tests/device/fenv/jni/
test_fenv.c 45 int32_t ix0, iy0, ix, iy; local
50 ix = ix0 = *(int32_t *)&x;
59 if (!(ix0 < 0))
  /bionic/libc/bionic/
ldexp.c 52 #define EXTRACT_WORDS(ix0,ix1,d) \
56 (ix0) = ew_u.parts.msw; \
  /external/opencv/cvaux/src/
decomppoly.cpp 151 int ix0, iy0, ix1, iy1, ix2, iy2;
214 ix0 = contour[ i ].x - x1;
218 det1 = ix2 * iy0 - ix0 * iy2;
224 det2 = ix1 * iy0 - ix0 * iy1;
  /external/skia/legacy/src/core/
SkScan_Hairline.cpp 92 int ix0 = SkFDot6Round(x0);
94 if (ix0 == ix1) {// too short to draw
101 horiline(ix0, ix1, startY, slope, blitter);
  /external/skia/src/core/
SkScan_Hairline.cpp 117 int ix0 = SkFDot6Round(x0);
119 if (ix0 == ix1) {// too short to draw
126 horiline(ix0, ix1, startY, slope, blitter);

Completed in 256 milliseconds