HomeSort by relevance Sort by last modified time
    Searched refs:ix0 (Results 1 - 16 of 16) 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); \
196 #define EXTRACT_LDBL80_WORDS(ix0,ix1,d) \
200 (ix0) = ew_u.xbits.expsign; \
209 #define EXTRACT_LDBL128_WORDS(ix0,ix1,ix2,d) \
213 (ix0) = ew_u.xbits.expsign; \
232 #define INSERT_LDBL80_WORDS(d,ix0,ix1)
    [all...]
  /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/sources/android/support/src/msun/
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); \
196 #define EXTRACT_LDBL80_WORDS(ix0,ix1,d) \
200 (ix0) = ew_u.xbits.expsign; \
209 #define EXTRACT_LDBL128_WORDS(ix0,ix1,ix2,d) \
213 (ix0) = ew_u.xbits.expsign; \
232 #define INSERT_LDBL80_WORDS(d,ix0,ix1)
    [all...]
  /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/upstream-freebsd/lib/libc/gen/
ldexp.c 53 #define EXTRACT_WORDS(ix0,ix1,d) \
57 (ix0) = ew_u.parts.msw; \
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 590 int ix0 = bbox->x0 / TILE_SIZE; local
596 ix0 == bbox->x1 / TILE_SIZE);
605 return lp_scene_bin_cmd_with_state( scene, ix0, iy0,
627 return lp_scene_bin_cmd_with_state( scene, ix0, iy0,
641 return lp_scene_bin_cmd_with_state(scene, ix0, iy0,
650 return lp_scene_bin_cmd_with_state( scene, ix0, iy0, setup->fs.stored,
665 int ix0 = trimmed_box.x0 / TILE_SIZE; local
673 plane[i].dcdx * ix0 * TILE_SIZE);
699 for (x = ix0; x <= ix1; x++)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 590 int ix0 = bbox->x0 / TILE_SIZE; local
596 ix0 == bbox->x1 / TILE_SIZE);
605 return lp_scene_bin_cmd_with_state( scene, ix0, iy0,
627 return lp_scene_bin_cmd_with_state( scene, ix0, iy0,
641 return lp_scene_bin_cmd_with_state(scene, ix0, iy0,
650 return lp_scene_bin_cmd_with_state( scene, ix0, iy0, setup->fs.stored,
665 int ix0 = trimmed_box.x0 / TILE_SIZE; local
673 plane[i].dcdx * ix0 * TILE_SIZE);
699 for (x = ix0; x <= ix1; x++)
  /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/chromium_org/third_party/skia/src/core/
SkScan_Hairline.cpp 115 int ix0 = SkFDot6Round(x0);
117 if (ix0 == ix1) {// too short to draw
124 horiline(ix0, ix1, startY, slope, blitter);
  /external/skia/src/core/
SkScan_Hairline.cpp 115 int ix0 = SkFDot6Round(x0);
117 if (ix0 == ix1) {// too short to draw
124 horiline(ix0, ix1, startY, slope, blitter);
  /external/deqp/modules/glshared/
glsShaderRenderCase.cpp 697 int ix0 = deCeilFloatToInt32(sx0 - 0.5f); local
711 //printf("(%d,%d) -> (%f..%f, %f..%f) (%d..%d, %d..%d)\n", x, y, sx0, sx1, sy0, sy1, ix0, ix1, iy0, iy1);
714 for (int ix = ix0; ix < ix1; ix++)
  /external/deqp/modules/gles2/functional/
es2fVertexTextureTests.cpp 340 const int ix0 = deCeilFloatToInt32(ldru.x() * (float)region.w - 0.5f); local
346 for (int ix = ix0; ix < ix1; ix++)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexTextureTests.cpp 436 const int ix0 = deCeilFloatToInt32(ldru.x() * (float)region.w - 0.5f); local
442 for (int ix = ix0; ix < ix1; ix++)
    [all...]

Completed in 736 milliseconds