HomeSort by relevance Sort by last modified time
    Searched defs:ix (Results 76 - 100 of 210) sorted by null

1 2 34 5 6 7 8 9

  /external/dropbear/libtommath/
bn_s_mp_mul_high_digs.c 25 int res, pa, pb, ix, iy; local
45 for (ix = 0; ix < pa; ix++) {
49 /* left hand side of A[ix] * B[iy] */
50 tmpx = a->dp[ix];
56 tmpy = b->dp + (digs - ix);
58 for (iy = digs - ix; iy < pb; iy++) {
  /external/fdlibm/
e_atan2.c 64 int k,m,hx,hy,ix,iy; local
67 hx = __HI(x); ix = hx&0x7fffffff;
71 if(((ix|((lx|-lx)>>31))>0x7ff00000)||
87 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
90 if(ix==0x7ff00000) {
111 k = (iy-ix)>>20;
e_fmod.c 35 int n,hx,hy,hz,ix,iy,sx,i; local
56 /* determine ix = ieee_ilogb(x) */
59 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
61 for (ix = -1022,i=(hx<<11); i>0; i<<=1) ix -=1;
63 } else ix = (hx>>20)-1023;
75 if(ix >= -1022)
78 n = -1022-ix;
101 n = ix - iy
    [all...]
k_cos.c 72 int ix; local
73 ix = __HI(x)&0x7fffffff; /* ix = |x|'s high word*/
74 if(ix<0x3e400000) { /* if x < 2**27 */
79 if(ix < 0x3FD33333) /* if |x| < 0.3 */
82 if(ix > 0x3fe90000) { /* x > 0.78125 */
85 __HI(qx) = ix-0x00200000; /* x/4 */
k_sin.c 65 int ix; local
66 ix = __HI(x)&0x7fffffff; /* high word of x */
67 if(ix<0x3e400000) /* |x| < 2**-27 */
k_tan.c 76 int ix, hx; local
79 ix = hx & 0x7fffffff; /* high word of |x| */
80 if (ix < 0x3e300000) { /* x < 2**-28 */
82 if (((ix | __LO(x)) | (iy + 1)) == 0)
101 if (ix >= 0x3FE59428) { /* |x| >= 0.6744 */
126 if (ix >= 0x3FE59428) {
s_atan.c 93 int ix,hx,id; local
96 ix = hx&0x7fffffff;
97 if(ix>=0x44100000) { /* if |x| >= 2^66 */
98 if(ix>0x7ff00000||
99 (ix==0x7ff00000&&(__LO(x)!=0)))
103 } if (ix < 0x3fdc0000) { /* |x| < 0.4375 */
104 if (ix < 0x3e200000) { /* |x| < 2^-29 */
110 if (ix < 0x3ff30000) { /* |x| < 1.1875 */
111 if (ix < 0x3fe60000) { /* 7/16 <=|x|<11/16 */
117 if (ix < 0x40038000) { /* |x| < 2.4375 *
    [all...]
e_acos.c 68 int hx,ix; local
70 ix = hx&0x7fffffff;
71 if(ix>=0x3ff00000) { /* |x| >= 1 */
72 if(((ix-0x3ff00000)|__LO(x))==0) { /* |x|==1 */
78 if(ix<0x3fe00000) { /* |x| < 0.5 */
79 if(ix<=0x3c600000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/
e_asin.c 77 int hx,ix; local
79 ix = hx&0x7fffffff;
80 if(ix>= 0x3ff00000) { /* |x|>= 1 */
81 if(((ix-0x3ff00000)|__LO(x))==0)
85 } else if (ix<0x3fe00000) { /* |x|<0.5 */
86 if(ix<0x3e400000) { /* if |x| < 2**-27 */
101 if(ix>=0x3FEF3333) { /* if |x| > 0.975 */
  /bionic/libm/src/
e_atan2.c 61 int32_t k,m,hx,hy,ix,iy; local
65 ix = hx&0x7fffffff;
68 if(((ix|((lx|-lx)>>31))>0x7ff00000)||
84 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
87 if(ix==0x7ff00000) {
108 k = (iy-ix)>>20;
e_rem_pio2f.c 67 int32_t e0,n,ix,hx; local
70 ix = hx&0x7fffffff;
72 if(ix<=0x49490f80) { /* |x| ~<= 2^19*(pi/2), medium size */
86 if(ix>=0x7f800000) { /* x is inf or NaN */
90 e0 = (ix>>23)-150; /* e0 = ilogb(|x|)-23; */
91 SET_FLOAT_WORD(z, ix - ((int32_t)(e0<<23)));
s_exp2f.c 95 uint32_t hx, hr, ix, i0; local
100 ix = hx & 0x7fffffff; /* high word of |x| */
101 if(ix >= 0x43000000) { /* |x| >= 128 */
102 if(ix >= 0x7f800000) {
103 if ((ix & 0x7fffff) != 0 || (hx & 0x80000000) == 0)
112 } else if (ix <= 0x33000000) { /* |x| <= 0x1p-25 */
e_acos.c 65 int32_t hx,ix; local
67 ix = hx&0x7fffffff;
68 if(ix>=0x3ff00000) { /* |x| >= 1 */
71 if(((ix-0x3ff00000)|lx)==0) { /* |x|==1 */
77 if(ix<0x3fe00000) { /* |x| < 0.5 */
78 if(ix<=0x3c600000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/
e_acosf.c 43 int32_t hx,ix; local
45 ix = hx&0x7fffffff;
46 if(ix==0x3f800000) { /* |x|==1 */
49 } else if(ix>0x3f800000) { /* |x| >= 1 */
52 if(ix<0x3f000000) { /* |x| < 0.5 */
53 if(ix<=0x23000000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/
e_asin.c 74 int32_t hx,ix; local
76 ix = hx&0x7fffffff;
77 if(ix>= 0x3ff00000) { /* |x|>= 1 */
80 if(((ix-0x3ff00000)|lx)==0)
84 } else if (ix<0x3fe00000) { /* |x|<0.5 */
85 if(ix<0x3e400000) { /* if |x| < 2**-27 */
100 if(ix>=0x3FEF3333) { /* if |x| > 0.975 */
e_asinf.c 45 int32_t hx,ix; local
47 ix = hx&0x7fffffff;
48 if(ix==0x3f800000) {
51 } else if(ix> 0x3f800000) { /* |x|>= 1 */
53 } else if (ix<0x3f000000) { /* |x|<0.5 */
54 if(ix<0x32000000) { /* if |x| < 2**-27 */
69 if(ix>=0x3F79999A) { /* if |x| > 0.975 */
e_jn.c 57 int32_t i,hx,ix,lx, sgn; local
65 ix = 0x7fffffff&hx;
67 if((ix|((u_int32_t)(lx|-lx))>>31)>0x7ff00000) return x+x;
77 if((ix|lx)==0||ix>=0x7ff00000) /* if x is 0 or inf */
81 if(ix>=0x52D00000) { /* x > 2**302 */
112 if(ix<0x3e100000) { /* x < 2**-29 */
213 int32_t i,hx,ix,lx; local
218 ix = 0x7fffffff&hx;
220 if((ix|((u_int32_t)(lx|-lx))>>31)>0x7ff00000) return x+x
    [all...]
e_jnf.c 33 int32_t i,hx,ix, sgn; local
41 ix = 0x7fffffff&hx;
43 if(ix>0x7f800000) return x+x;
53 if(ix==0||ix>=0x7f800000) /* if x is 0 or inf */
65 if(ix<0x30800000) { /* x < 2**-29 */
166 int32_t i,hx,ix,ib; local
171 ix = 0x7fffffff&hx;
173 if(ix>0x7f800000) return x+x;
174 if(ix==0) return -one/zero
    [all...]
e_logf.c 39 int32_t k,ix,i,j; local
41 GET_FLOAT_WORD(ix,x);
44 if (ix < 0x00800000) { /* x < 2**-126 */
45 if ((ix&0x7fffffff)==0)
47 if (ix<0) return (x-x)/zero; /* log(-#) = NaN */
49 GET_FLOAT_WORD(ix,x);
51 if (ix >= 0x7f800000) return x+x;
52 k += (ix>>23)-127;
53 ix &= 0x007fffff;
54 i = (ix+(0x95f64<<3))&0x800000
    [all...]
s_exp2.c 341 uint32_t hx, hr, ix, lx, i0; local
346 ix = hx & 0x7fffffff; /* high word of |x| */
347 if(ix >= 0x40900000) { /* |x| >= 1024 */
348 if(ix >= 0x7ff00000) {
350 if(((ix & 0xfffff) | lx) != 0 || (hx & 0x80000000) == 0)
359 } else if (ix < 0x3c900000) { /* |x| < 0x1p-54 */
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 47 int ix = (int)x; local
54 mDrawable.setBounds(ix, itop, ix+dw, itop+dh);
  /dalvik/dx/tests/084-dex-high-register-moves/
Blort.java 41 int ix = i; local
45 i = -ix;
  /development/samples/BrowserPlugin/jni/animation/
AnimationPlugin.cpp 40 int ix = (int)roundf(x) + inset; local
41 if (ix < 0) {
42 ix = 0;
44 return static_cast<uint16_t>(ix);
  /development/samples/BrowserPlugin/jni/navigation/
NavigationPlugin.cpp 47 int ix = (int)roundf(x) + inset; local
48 if (ix < 0) {
49 ix = 0;
51 return static_cast<uint16_t>(ix);
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 120 int ix; member in struct:Test1::X

Completed in 331 milliseconds

1 2 34 5 6 7 8 9