Searched refs:ix (Results 1 - 25 of 652) sorted by relevance

1234567891011>>

/netbsd-current/lib/libm/src/
H A Ds_isnanf.c32 int32_t ix; local
33 GET_FLOAT_WORD(ix,x);
34 ix &= 0x7fffffff;
35 ix = 0x7f800000 - ix;
36 return (int)(((u_int32_t)(ix))>>31);
H A Ds_isinff.c22 int32_t ix; local
23 GET_FLOAT_WORD(ix,x);
24 ix &= 0x7fffffff;
25 ix ^= 0x7f800000;
26 return (ix == 0);
H A Ds_logb.c34 int32_t lx,ix; local
35 EXTRACT_WORDS(ix,lx,x);
36 ix &= 0x7fffffff; /* high |x| */
37 if((ix|lx)==0) return -1.0/fabs(x);
38 if(ix>=0x7ff00000) return x*x;
39 if((ix>>=20)==0) /* IEEE 754 logb */
42 return (double) (ix-1023);
H A Ds_logbf.c27 int32_t ix; local
28 GET_FLOAT_WORD(ix,x);
29 ix &= 0x7fffffff; /* high |x| */
30 if(ix==0) return (float)-1.0/fabsf(x);
31 if(ix>=0x7f800000) return x*x;
32 if((ix>>=23)==0) /* IEEE 754 logb */
35 return (float) (ix-127);
H A De_sqrtf.c31 int32_t ix,s,q,m,t,i; local
34 GET_FLOAT_WORD(ix,x);
37 if((ix&0x7f800000)==0x7f800000) {
42 if(ix<=0) {
43 if((ix&(~sign))==0) return x;/* sqrt(+-0) = +-0 */
44 else if(ix<0)
48 m = (ix>>23);
50 for(i=0;(ix&0x00800000)==0;i++) ix<<=1;
54 ix
[all...]
H A Ds_cospif.c51 uint32_t ix, jj0; local
53 GET_FLOAT_WORD(ix, x);
54 ix = ix & 0x7fffffff;
55 SET_FLOAT_WORD(ax, ix);
57 if (ix < 0x3f800000) { /* |x| < 1 */
58 if (ix < 0x3e800000) { /* |x| < 0.25 */
59 if (ix < 0x38800000) { /* |x| < 0x1p-14 */
67 if (ix < 0x3f000000) /* |x| < 0.5 */
69 else if (ix <
[all...]
H A Ds_fabsf.c31 u_int32_t ix; local
32 GET_FLOAT_WORD(ix,x);
33 SET_FLOAT_WORD(x,ix&0x7fffffff);
H A Ds_finitef.c35 int32_t ix; local
36 GET_FLOAT_WORD(ix,x);
37 return (int)((u_int32_t)((ix&0x7fffffff)-0x7f800000)>>31);
H A Ds_cospi.c85 uint32_t hx, ix, jj0, lx; local
88 ix = hx & 0x7fffffff;
89 INSERT_WORDS(ax, ix, lx);
91 if (ix < 0x3ff00000) { /* |x| < 1 */
92 if (ix < 0x3fd00000) { /* |x| < 0.25 */
93 if (ix < 0x3e200000) { /* |x| < 0x1p-29 */
100 if (ix < 0x3fe00000) /* |x| < 0.5 */
102 else if (ix < 0x3fe80000){ /* |x| < 0.75 */
111 if (ix < 0x43300000) { /* 1 <= |x| < 0x1p52 */
112 FFLOOR(x, jj0, ix, l
[all...]
H A Ds_frexpf.c30 int32_t hx,ix; local
32 ix = 0x7fffffff&hx;
34 if(ix>=0x7f800000||(ix==0)) return x; /* 0,inf,nan */
35 if (ix<0x00800000) { /* subnormal */
38 ix = hx&0x7fffffff;
41 *eptr += (ix>>23)-126;
H A Ds_frexp.c41 int32_t hx, ix, lx; local
43 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 += ((uint32_t)ix>>20)-1022;
H A Ds_tan.c58 int32_t n, ix; local
61 GET_HIGH_WORD(ix,x);
64 ix &= 0x7fffffff;
65 if(ix <= 0x3fe921fb) return __kernel_tan(x,z,1);
68 else if (ix>=0x7ff00000) return x-x; /* NaN */
H A Ds_tanf.c31 int32_t n, ix; local
33 GET_FLOAT_WORD(ix,x);
36 ix &= 0x7fffffff;
37 if(ix <= 0x3f490fda) return __kernel_tanf(x,z,1);
40 else if (ix>=0x7f800000) return x-x; /* NaN */
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_dr_is_modulus.c23 int ix; local
33 for (ix = 1; ix < a->used; ix++) {
34 if (a->dp[ix] != MP_MASK) {
H A Dbn_reverse.c24 int ix, iy; local
27 ix = 0;
29 while (ix < iy) {
30 t = s[ix];
31 s[ix] = s[iy];
33 ++ix;
H A Dbn_mp_prime_is_divisible.c27 int err, ix; local
33 for (ix = 0; ix < PRIME_SIZE; ix++) {
34 /* what is a mod LBL_prime_tab[ix] */
35 if ((err = mp_mod_d (a, ltm_prime_tab[ix], &res)) != MP_OKAY) {
H A Dbn_fast_mp_montgomery_reduce.c30 int ix, res, olduse; local
57 for (ix = 0; ix < x->used; ix++) {
62 for (; ix < n->used * 2 + 1; ix++) {
70 for (ix = 0; ix < n->used; ix++) {
75 * that W[ix
[all...]
H A Dbn_mp_reduce_is_2k_l.c23 int ix, iy; local
31 for (iy = ix = 0; ix < a->used; ix++) {
32 if (a->dp[ix] == MP_MASK) {
/netbsd-current/external/gpl3/gcc/dist/libquadmath/math/
H A Dtanq.c52 int64_t n, ix; local
55 GET_FLT128_MSW64(ix,x);
58 ix &= 0x7fffffffffffffffLL;
59 if(ix <= 0x3ffe921fb54442d1LL) return __quadmath_kernel_tanq(x,z,1);
62 else if (ix>=0x7fff000000000000LL) {
63 if (ix == 0x7fff000000000000LL) {
H A Dfrexpq.c37 uint64_t hx, lx, ix; local
39 ix = 0x7fffffffffffffffULL&hx;
41 if(ix>=0x7fff000000000000ULL||((ix|lx)==0)) return x + x;/* 0,inf,nan */
42 if (ix<0x0001000000000000ULL) { /* subnormal */
45 ix = hx&0x7fffffffffffffffULL;
48 *eptr += (ix>>48)-16382;
/netbsd-current/external/gpl3/gcc.old/dist/libquadmath/math/
H A Dtanq.c52 int64_t n, ix; local
55 GET_FLT128_MSW64(ix,x);
58 ix &= 0x7fffffffffffffffLL;
59 if(ix <= 0x3ffe921fb54442d1LL) return __quadmath_kernel_tanq(x,z,1);
62 else if (ix>=0x7fff000000000000LL) {
63 if (ix == 0x7fff000000000000LL) {
H A Dfrexpq.c37 uint64_t hx, lx, ix; local
39 ix = 0x7fffffffffffffffULL&hx;
41 if(ix>=0x7fff000000000000ULL||((ix|lx)==0)) return x + x;/* 0,inf,nan */
42 if (ix<0x0001000000000000ULL) { /* subnormal */
45 ix = hx&0x7fffffffffffffffULL;
48 *eptr += (ix>>48)-16382;
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/z80/
H A Dz80_op_ii_ld.s6 RLC (ix+8),a
7 RLC (ix+8),b
8 RLC (ix+8),c
9 RLC (ix+8),d
10 RLC (ix+8),e
11 RLC (ix+8),h
12 RLC (ix+8),l
21 RRC (ix+8),a
22 RRC (ix+8),b
23 RRC (ix
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
H A Dcommon-block.f9022 INTEGER*4 ix local in subroutine:in
30 common /fo_o/ix,iy2,iz local in subroutine:in
36 if (ix .ne. 11 .or. iy2 .ne. 22.0 .or. iz .ne. 33.0) call abort
39 ix = 0 ! stop-here-in
45 INTEGER*4 ix variable in program:common_test
53 common /foo/ix,iy,iz local in program:common_test
56 ix = 1
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
H A Dcommon-block.f9022 INTEGER*4 ix local in subroutine:in
30 common /fo_o/ix,iy2,iz local in subroutine:in
36 if (ix .ne. 11 .or. iy2 .ne. 22.0 .or. iz .ne. 33.0) call abort
39 ix = 0 ! stop-here-in
45 INTEGER*4 ix variable in program:common_test
53 common /foo/ix,iy,iz local in program:common_test
56 ix = 1

Completed in 152 milliseconds

1234567891011>>