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

1 23 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_tanhf.c 27 int32_t jx,ix; local
30 ix = jx&0x7fffffff;
33 if(ix>=0x7f800000) {
39 if (ix < 0x41100000) { /* |x|<9 */
40 if (ix<0x39800000) { /* |x|<2**-12 */
43 if (ix>=0x3f800000) { /* |x|>=1 */
s_atanf.c 52 int32_t ix,hx,id; local
55 ix = hx&0x7fffffff;
56 if(ix>=0x4c800000) { /* if |x| >= 2**26 */
57 if(ix>0x7f800000)
61 } if (ix < 0x3ee00000) { /* |x| < 0.4375 */
62 if (ix < 0x39800000) { /* |x| < 2**-12 */
68 if (ix < 0x3f980000) { /* |x| < 1.1875 */
69 if (ix < 0x3f300000) { /* 7/16 <=|x|<11/16 */
75 if (ix < 0x401c0000) { /* |x| < 2.4375 */
s_cosf.c 42 int32_t n, hx, ix; local
45 ix = hx & 0x7fffffff;
47 if(ix <= 0x3f490fda) { /* |x| ~<= pi/4 */
48 if(ix<0x39800000) /* |x| < 2**-12 */
52 if(ix<=0x407b53d1) { /* |x| ~<= 5*pi/4 */
53 if(ix>0x4016cbe3) /* |x| ~> 3*pi/4 */
62 if(ix<=0x40e231d5) { /* |x| ~<= 9*pi/4 */
63 if(ix>0x40afeddf) /* |x| ~> 7*pi/4 */
74 else if (ix>=0x7f800000) return x-x;
s_sinf.c 42 int32_t n, hx, ix; local
45 ix = hx & 0x7fffffff;
47 if(ix <= 0x3f490fda) { /* |x| ~<= pi/4 */
48 if(ix<0x39800000) /* |x| < 2**-12 */
52 if(ix<=0x407b53d1) { /* |x| ~<= 5*pi/4 */
53 if(ix<=0x4016cbe3) { /* |x| ~<= 3pi/4 */
61 if(ix<=0x40e231d5) { /* |x| ~<= 9*pi/4 */
62 if(ix<=0x40afeddf) { /* |x| ~<= 7*pi/4 */
72 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 77 int32_t ix,hx,id; local
80 ix = hx&0x7fffffff;
81 if(ix>=0x44100000) { /* if |x| >= 2^66 */
84 if(ix>0x7ff00000||
85 (ix==0x7ff00000&&(low!=0)))
89 } if (ix < 0x3fdc0000) { /* |x| < 0.4375 */
90 if (ix < 0x3e400000) { /* |x| < 2^-27 */
96 if (ix < 0x3ff30000) { /* |x| < 1.1875 */
97 if (ix < 0x3fe60000) { /* 7/16 <=|x|<11/16 */
103 if (ix < 0x40038000) { /* |x| < 2.4375 *
    [all...]
s_nexttoward.c 37 int32_t hx,ix; local
41 ix = hx&0x7fffffff; /* |x| */
44 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) ||
61 ix = hx&0x7ff00000;
62 if(ix>=0x7ff00000) return x+x; /* overflow */
63 if(ix<0x00100000) { /* underflow */
s_nexttowardf.c 28 int32_t hx,ix; local
31 ix = hx&0x7fffffff; /* |x| */
34 if((ix>0x7f800000) ||
39 if(ix==0) { /* x == 0 */
48 ix = hx&0x7f800000;
49 if(ix>=0x7f800000) return x+x; /* overflow */
50 if(ix<0x00800000) { /* underflow */
s_nextafterf.c 26 int32_t hx,hy,ix,iy; local
30 ix = hx&0x7fffffff; /* |x| */
33 if((ix>0x7f800000) || /* x is nan */
37 if(ix==0) { /* x == 0 */
  /external/dropbear/libtommath/
bn_mp_mul_d.c 24 int ix, res, olduse; local
49 for (ix = 0; ix < a->used; ix++) {
60 /* store final carry [if any] and increment ix offset */
62 ++ix;
65 while (ix++ < olduse) {
bn_mp_or.c 21 int res, ix, px; local
38 for (ix = 0; ix < px; ix++) {
39 t.dp[ix] |= x->dp[ix];
bn_mp_xor.c 22 int res, ix, px; local
39 for (ix = 0; ix < px; ix++) {
40 t.dp[ix] ^= x->dp[ix];
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;
  /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...]
  /frameworks/av/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/chromium_org/sandbox/win/src/
shared_handles.cc 59 for (size_t ix = 0; ix != shared_.max_items; ++ix) {
60 if (tag == shared_.items[ix].tag) {
61 return &shared_.items[ix];
  /external/libvorbis/lib/
scales.h 37 } ix; local
38 ix.f = x;
39 ix.i = (ix.i & 0x80000000U) | (0x3f800000U);
40 return ix.f;
48 } ix; local
49 ix.f = *x;
50 ix.i = ix.i&0x7fffffff;
51 return (float)(ix.i * 7.17711438e-7f -764.6161886f)
    [all...]
  /external/clang/test/CodeGenCXX/
constructor-conversion.cpp 11 X(int) : iX(2), fX(2.3) , name("HELLO\n") { }
13 X(const char* arg, int ix=0) { iX = ix; fX = 6.0; name = arg+ix; }
14 X(): iX(100), fX(1.2) {}
15 int iX;
19 printf("iX = %d fX = %f name = %s\n", iX, fX, name);
  /dalvik/dx/tests/084-dex-high-register-moves/
Blort.java 41 int ix = i; local
45 i = -ix;

Completed in 378 milliseconds

1 23 4 5 6 7 8 91011>>