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

  /bionic/libm/src/
e_sqrt.c 99 u_int32_t r,t1,s1,ix1,q1; local
101 EXTRACT_WORDS(ix0,ix1,x);
110 if(((ix0&(~sign))|ix1)==0) return x;/* sqrt(+-0) = +-0 */
119 ix0 |= (ix1>>11); ix1 <<= 21;
123 ix0 |= (ix1>>(32-i));
124 ix1 <<= i;
129 ix0 += ix0 + ((ix1&sign)>>31);
130 ix1 += ix1;
    [all...]
math_private.h 27 * ix1 = *((1-n0)+(int*)&x); * low word of x *
71 #define EXTRACT_WORDS(ix0,ix1,d) \
76 (ix1) = ew_u.parts.lsw; \
99 #define INSERT_WORDS(d,ix0,ix1) \
103 iw_u.parts.lsw = (ix1); \
  /external/fdlibm/
e_sqrt.c 100 unsigned r,t1,s1,ix1,q1; local
104 ix1 = __LO(x); /* low word of x */
113 if(((ix0&(~sign))|ix1)==0) return x;/* ieee_sqrt(+-0) = +-0 */
122 ix0 |= (ix1>>11); ix1 <<= 21;
126 ix0 |= (ix1>>(32-i));
127 ix1 <<= i;
132 ix0 += ix0 + ((ix1&sign)>>31);
133 ix1 += ix1;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
e_sqrt.h 146 u_int32_t r,t1,s1,ix1,q1; local
148 EXTRACT_WORDS(ix0,ix1,x);
157 if(((ix0&(~sign))|ix1)==0) return x;/* sqrt(+-0) = +-0 */
166 ix0 |= (ix1>>11); ix1 <<= 21;
170 ix0 |= (ix1>>(32-i));
171 ix1 <<= i;
176 ix0 += ix0 + ((ix1&sign)>>31);
177 ix1 += ix1;
    [all...]
math_private.h 29 ix1 = *((1-n0)+(int*)&x); * low word of x *
75 #define EXTRACT_WORDS(ix0,ix1,d) \
80 (ix1) = ew_u.parts.lsw; \
103 #define INSERT_WORDS(d,ix0,ix1) \
107 iw_u.parts.lsw = (ix1); \
  /bionic/libc/bionic/
ldexp.c 52 #define EXTRACT_WORDS(ix0,ix1,d) \
57 (ix1) = ew_u.parts.lsw; \
  /external/opencv/cvaux/src/
decomppoly.cpp 151 int ix0, iy0, ix1, iy1, ix2, iy2;
201 ix1 = x3 - x1;
217 det = ix2 * iy1 - ix1 * iy2;
224 det2 = ix1 * iy0 - ix0 * iy1;
  /external/skia/src/core/
SkScan_Hairline.cpp 93 int ix1 = SkFDot6Round(x1);
94 if (ix0 == ix1) {// too short to draw
101 horiline(ix0, ix1, startY, slope, blitter);
  /external/valgrind/main/VEX/priv/
ir_opt.c     [all...]

Completed in 557 milliseconds