HomeSort by relevance Sort by last modified time
    Searched refs:ix (Results 51 - 75 of 179) sorted by null

1 23 4 5 6 7 8

  /external/fdlibm/
s_asinh.c 44 int hx,ix; local
46 ix = hx&0x7fffffff;
47 if(ix>=0x7ff00000) return x+x; /* x is inf or NaN */
48 if(ix< 0x3e300000) { /* |x|<2**-28 */
51 if(ix>0x41b00000) { /* |x| > 2**28 */
53 } else if (ix>0x40000000) { /* 2**28 > |x| > 2.0 */
s_tanh.c 54 int jx,ix; local
58 ix = jx&0x7fffffff;
61 if(ix>=0x7ff00000) {
67 if (ix < 0x40360000) { /* |x|<22 */
68 if (ix<0x3c800000) /* |x|<2**-55 */
70 if (ix>=0x3ff00000) { /* |x|>=1 */
e_sinh.c 48 int ix,jx; local
53 ix = jx&0x7fffffff;
56 if(ix>=0x7ff00000) return x+x;
61 if (ix < 0x40360000) { /* |x|<22 */
62 if (ix<0x3e300000) /* |x|<2**-28 */
65 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one));
70 if (ix < 0x40862E42) return h*__ieee754_exp(ieee_fabs(x));
74 if (ix<0x408633CE || (ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d)) {
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...]
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 */
  /bionic/libm/src/
s_cosf.c 39 int32_t n, hx, ix; local
42 ix = hx & 0x7fffffff;
44 if(ix <= 0x3f490fda) { /* |x| ~<= pi/4 */
45 if(ix<0x39800000) /* |x| < 2**-12 */
49 if(ix<=0x407b53d1) { /* |x| ~<= 5*pi/4 */
50 if(ix>0x4016cbe3) /* |x| ~> 3*pi/4 */
59 if(ix<=0x40e231d5) { /* |x| ~<= 9*pi/4 */
60 if(ix>0x40afeddf) /* |x| ~> 7*pi/4 */
71 else if (ix>=0x7f800000) return x-x;
s_sinf.c 39 int32_t n, hx, ix; local
42 ix = hx & 0x7fffffff;
44 if(ix <= 0x3f490fda) { /* |x| ~<= pi/4 */
45 if(ix<0x39800000) /* |x| < 2**-12 */
49 if(ix<=0x407b53d1) { /* |x| ~<= 5*pi/4 */
50 if(ix<=0x4016cbe3) { /* |x| ~<= 3pi/4 */
58 if(ix<=0x40e231d5) { /* |x| ~<= 9*pi/4 */
59 if(ix<=0x40afeddf) { /* |x| ~<= 7*pi/4 */
69 else if (ix>=0x7f800000) return x-x;
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_atan.c 76 int32_t ix,hx,id; local
79 ix = hx&0x7fffffff;
80 if(ix>=0x44100000) { /* if |x| >= 2^66 */
83 if(ix>0x7ff00000||
84 (ix==0x7ff00000&&(low!=0)))
88 } if (ix < 0x3fdc0000) { /* |x| < 0.4375 */
89 if (ix < 0x3e200000) { /* |x| < 2^-29 */
95 if (ix < 0x3ff30000) { /* |x| < 1.1875 */
96 if (ix < 0x3fe60000) { /* 7/16 <=|x|<11/16 */
102 if (ix < 0x40038000) { /* |x| < 2.4375 *
    [all...]
s_nexttoward.c 38 int32_t hx,ix; local
42 ix = hx&0x7fffffff; /* |x| */
45 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) ||
62 ix = hx&0x7ff00000;
63 if(ix>=0x7ff00000) return x+x; /* overflow */
64 if(ix<0x00100000) { /* underflow */
s_atanf.c 59 int32_t ix,hx,id; local
62 ix = hx&0x7fffffff;
63 if(ix>=0x50800000) { /* if |x| >= 2^34 */
64 if(ix>0x7f800000)
68 } if (ix < 0x3ee00000) { /* |x| < 0.4375 */
69 if (ix < 0x31000000) { /* |x| < 2^-29 */
75 if (ix < 0x3f980000) { /* |x| < 1.1875 */
76 if (ix < 0x3f300000) { /* 7/16 <=|x|<11/16 */
82 if (ix < 0x401c0000) { /* |x| < 2.4375 */
s_nextafterf.c 27 int32_t hx,hy,ix,iy; local
31 ix = hx&0x7fffffff; /* |x| */
34 if((ix>0x7f800000) || /* x is nan */
38 if(ix==0) { /* x == 0 */
e_atan2f.c 35 int32_t k,m,hx,hy,ix,iy; local
38 ix = hx&0x7fffffff;
41 if((ix>0x7f800000)||
57 if(ix==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
60 if(ix==0x7f800000) {
81 k = (iy-ix)>>23;
e_j0.c 89 int32_t hx,ix; local
92 ix = hx&0x7fffffff;
93 if(ix>=0x7ff00000) return one/(x*x);
95 if(ix >= 0x40000000) { /* |x| >= 2.0 */
100 if(ix<0x7fe00000) { /* make sure x+x not overflow */
109 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(x);
116 if(ix<0x3f200000) { /* |x| < 2**-13 */
118 if(ix<0x3e400000) return one; /* |x|<2**-27 */
125 if(ix < 0x3FF00000) { /* |x| < 1.00 */
150 int32_t hx,ix,lx local
276 int32_t ix; local
371 int32_t ix; local
    [all...]
e_j0f.c 46 int32_t hx,ix; local
49 ix = hx&0x7fffffff;
50 if(ix>=0x7f800000) return one/(x*x);
52 if(ix >= 0x40000000) { /* |x| >= 2.0 */
57 if(ix<0x7f000000) { /* make sure x+x not overflow */
66 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(x);
73 if(ix<0x39000000) { /* |x| < 2**-13 */
75 if(ix<0x32000000) return one; /* |x|<2**-27 */
82 if(ix < 0x3F800000) { /* |x| < 1.00 */
107 int32_t hx,ix; local
232 int32_t ix; local
327 int32_t ix; local
    [all...]
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/src/
gmed_n.cpp 130 Word16 i, j, ix = 0;
149 ix = j;
152 tmp2[ix] = -32768;
153 tmp[i] = ix;
188 register Word16 i, j, ix = 0; local
207 ix = j;
210 *(tmp2 + ix) = -32768;
211 *(tmp + i) = ix;
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
gmed_n.cpp 130 Word16 i, j, ix = 0;
149 ix = j;
152 tmp2[ix] = -32768;
153 tmp[i] = ix;
188 register Word16 i, j, ix = 0; local
207 ix = j;
210 *(tmp2 + ix) = -32768;
211 *(tmp + i) = ix;
  /external/dropbear/libtommath/
bn_s_mp_mul_digs.c 25 int res, pa, pb, ix, iy; local
44 for (ix = 0; ix < pa; ix++) {
49 pb = MIN (b->used, digs - ix);
53 tmpx = a->dp[ix];
55 /* an alias for the destination shifted ix places */
56 tmpt = t.dp + ix;
75 if (ix + iy < digs) {
bn_mp_add_d.c 22 int res, ix, oldused; local
71 for (ix = 1; ix < a->used; ix++) {
77 ix++;
96 ix = 1;
100 while (ix++ < oldused) {
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++) {
bn_mp_div_d.c 37 int res, ix; local
56 if (s_is_power_of_two(b, &ix) == 1) {
58 *d = a->dp[0] & ((((mp_digit)1)<<ix) - 1);
61 return mp_div_2d(a, ix, c, NULL);
81 for (ix = a->used - 1; ix >= 0; ix--) {
82 w = (w << ((mp_word)DIGIT_BIT)) | ((mp_word)a->dp[ix]);
90 q.dp[ix] = (mp_digit)t;
bn_mp_div_3.c 25 int res, ix; local
37 for (ix = a->used - 1; ix >= 0; ix--) {
38 w = (w << ((mp_word)DIGIT_BIT)) | ((mp_word)a->dp[ix]);
57 q.dp[ix] = (mp_digit)t;
bn_mp_montgomery_reduce.c 22 int ix, res, digs; local
46 for (ix = 0; ix < n->used; ix++) {
55 mu = (mp_digit) (((mp_word)x->dp[ix]) * ((mp_word)rho) & MP_MASK);
67 tmpx = x->dp + ix;
84 /* At this point the ix'th digit of x should be zero */
bn_mp_sub_d.c 23 int res, ix, oldused; local
58 ix = 1;
74 for (ix = 1; ix < a->used; ix++) {
82 while (ix++ < oldused) {
  /dalvik/dx/tests/084-dex-high-register-moves/
Blort.java 41 int ix = i; local
45 i = -ix;

Completed in 445 milliseconds

1 23 4 5 6 7 8