Searched defs:ix (Results 1 - 25 of 91) sorted by relevance

1234

/external/dropbear/libtommath/
H A Dbn_mp_dr_is_modulus.c21 int ix; local
31 for (ix = 1; ix < a->used; ix++) {
32 if (a->dp[ix] != MP_MASK) {
H A Dbn_mp_reduce_is_2k_l.c21 int ix, iy; local
29 for (iy = ix = 0; ix < a->used; ix++) {
30 if (a->dp[ix] == MP_MASK) {
H A Dbn_mp_prime_is_divisible.c25 int err, ix; local
31 for (ix = 0; ix < PRIME_SIZE; ix++) {
32 /* what is a mod LBL_prime_tab[ix] */
33 if ((err = mp_mod_d (a, ltm_prime_tab[ix], &res)) != MP_OKAY) {
H A Dbn_mp_reduce_is_2k.c21 int ix, iy, iw; local
34 for (ix = DIGIT_BIT; ix < iy; ix++) {
H A Dbn_reverse.c22 int ix, iy; local
25 ix = 0;
27 while (ix < iy) {
28 t = s[ix];
29 s[ix] = s[iy];
31 ++ix;
H A Dbn_mp_add_d.c22 int res, ix, oldused; local
71 for (ix = 1; ix < a->used; ix++) {
77 ix++;
96 ix = 1;
100 while (ix++ < oldused) {
H A Dbn_mp_and.c22 int res, ix, px; local
39 for (ix = 0; ix < px; ix++) {
40 t.dp[ix] &= x->dp[ix];
44 for (; ix < t.used; ix++) {
45 t.dp[ix] = 0;
H A Dbn_mp_div_3.c25 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;
H A Dbn_mp_or.c21 int res, ix, px; local
38 for (ix = 0; ix < px; ix++) {
39 t.dp[ix] |= x->dp[ix];
H A Dbn_mp_prime_is_prime.c28 int ix, err, res; local
39 for (ix = 0; ix < PRIME_SIZE; ix++) {
40 if (mp_cmp_d(a, ltm_prime_tab[ix]) == MP_EQ) {
61 for (ix = 0; ix < t; ix++) {
63 mp_set (&b, ltm_prime_tab[ix]);
H A Dbn_mp_sub_d.c23 int res, ix, oldused; local
58 ix = 1;
74 for (ix = 1; ix < a->used; ix++) {
82 while (ix++ < oldused) {
H A Dbn_mp_xor.c22 int res, ix, px; local
39 for (ix = 0; ix < px; ix++) {
40 t.dp[ix] ^= x->dp[ix];
/external/fdlibm/
H A Ds_logb.c29 int lx,ix; local
30 ix = (__HI(x))&0x7fffffff; /* high |x| */
32 if((ix|lx)==0) return -1.0/ieee_fabs(x);
33 if(ix>=0x7ff00000) return x*x;
34 if((ix>>=20)==0) /* IEEE 754 logb */
37 return (double) (ix-1023);
H A Ds_ilogb.c29 int hx,lx,ix; local
38 for (ix = -1043; lx>0; lx<<=1) ix -=1;
40 for (ix = -1022,hx<<=11; hx>0; hx<<=1) ix -=1;
42 return ix;
H A Ds_cos.c55 int n, ix; local
58 ix = __HI(x);
61 ix &= 0x7fffffff;
62 if(ix <= 0x3fe921fb) return __kernel_cos(x,z);
65 else if (ix>=0x7ff00000) return x-x;
H A Ds_frexp.c40 int hx, ix, lx; local
42 ix = 0x7fffffff&hx;
45 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
46 if (ix<0x00100000) { /* subnormal */
49 ix = hx&0x7fffffff;
52 *eptr += (ix>>20)-1022;
H A Ds_sin.c55 int n, ix; local
58 ix = __HI(x);
61 ix &= 0x7fffffff;
62 if(ix <= 0x3fe921fb) return __kernel_sin(x,z,0);
65 else if (ix>=0x7ff00000) return x-x;
H A Ds_tan.c54 int n, ix; local
57 ix = __HI(x);
60 ix &= 0x7fffffff;
61 if(ix <= 0x3fe921fb) return __kernel_tan(x,z,1);
64 else if (ix>=0x7ff00000) return x-x; /* NaN */
H A De_atanh.c51 int hx,ix; local
55 ix = hx&0x7fffffff;
56 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
58 if(ix==0x3ff00000)
60 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
61 __HI(x) = ix; /* x <- |x| */
62 if(ix<0x3fe00000) { /* x < 0.5 */
H A De_cosh.c51 int ix; local
55 ix = __HI(x);
56 ix &= 0x7fffffff;
59 if(ix>=0x7ff00000) return x*x;
62 if(ix<0x3fd62e43) {
65 if (ix<0x3c800000) return w; /* ieee_cosh(tiny) = 1 */
70 if (ix < 0x40360000) {
76 if (ix < 0x40862E42) return half*__ieee754_exp(ieee_fabs(x));
80 if (ix<0x408633CE ||
81 (ix
[all...]
H A De_sinh.c48 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)) {
H A Ds_asinh.c44 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 */
H A Ds_nextafter.c30 int hx,hy,ix,iy; local
37 ix = hx&0x7fffffff; /* |x| */
40 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
44 if((ix|lx)==0) { /* x == 0 */
H A Ds_tanh.c54 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 */
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/src/
H A Dgmed_n.cpp130 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;

Completed in 133 milliseconds

1234