Searched refs:manh (Results 1 - 11 of 11) sorted by relevance

/haiku-buildtools/gcc/gmp/
H A Dextract-dbl.c45 unsigned long int manh, manl; local
75 | ((mp_limb_t) x.s.manh << 43) | ((mp_limb_t) x.s.manl << 11));
90 manh = ((mp_limb_t) 1 << 31) | (x.s.manh << 11) | (x.s.manl >> 21);
99 manh = (manh << 1) | (manl >> 31);
103 while ((manh & GMP_LIMB_HIGHBIT) == 0);
149 manh = d;
150 manl = (d - manh) * (4.0 * ((unsigned long int) 1 << (BITS_PER_PART - 2)));
228 rp[2] = manh >> (GMP_LIMB_BIT
[all...]
H A Dgmp-impl.h3402 gmp_uint_least32_t manh:20; member in struct:ieee_double_extract::__anon3416
3418 gmp_uint_least32_t manh:20; member in struct:ieee_double_extract::__anon3417
3434 gmp_uint_least32_t manh:20; member in struct:ieee_double_extract::__anon3418
3466 if (u.s.manl == 0 && u.s.manh == 0) \
/haiku-buildtools/gcc/mpfr/src/
H A Dset_d.c38 mp_limb_t manh; local
63 | ((mp_limb_t) x.s.manh << 43) | ((mp_limb_t) x.s.manl << 11));
65 manh = (MPFR_LIMB_ONE << 31) | (x.s.manh << 11) | (x.s.manl >> 21);
72 manl = ((mp_limb_t) x.s.manh << 43) | ((mp_limb_t) x.s.manl << 11);
74 manh = (x.s.manh << 11) /* high 21 bits */
123 manh = (mp_limb_t) d;
124 manl = (mp_limb_t) ((d - manh) * MP_BASE_AS_DOUBLE);
133 rp[1] = manh;
[all...]
H A Dset_d64.c156 exp |= x.s.manh >> 18;
157 d1 = (x.s.manh >> 8) & 1023;
158 d2 = ((x.s.manh << 2) | (x.s.manl >> 30)) & 1023;
174 /* manh has 20 bits, manl has 32 bits */
175 rp[1] = ((x.s.exp & 1) << 20) | x.s.manh;
182 rp[1] = x.s.manh;
H A Dget_ld.c144 ld.s.manh = (tmpmant[0] >> denorm) >> 32;
149 ld.s.manh = tmpmant[1];
154 ld.s.manh = tmpmant[1] >> denorm;
159 ld.s.manh = 0;
H A Dget_d64.c250 x.s.manh = ((G & 3) << 18) | (d1 << 8) | (d2 >> 2);
273 x.s.manh = rp[1] & 1048575; /* 20 low bits */
280 x.s.manh = (rp[1] ^ 2097152) | ((exp & 1) << 19);
H A Dset_ld.c297 tmpmant[0] = ((mp_limb_t) x.s.manh << 32) | ((mp_limb_t) x.s.manl);
300 tmpmant[1] = (mp_limb_t) x.s.manh;
H A Dmpfr-impl.h622 unsigned int manh : 32; member in struct:__anon3714::__anon3715
/haiku-buildtools/gcc/gmp/mpn/generic/
H A Dget_d.c36 int manh, manl, sig, exp; member in struct:ieee_double_extract::__anon1857
298 u.s.manh = mhi;
392 u.s.manh = m0 >> 32;
398 u.s.manh = m0;
/haiku-buildtools/gcc/gmp/tests/
H A Dmisc.c438 x.s.manh = 0;
455 return (x.s.exp == 2047 && x.s.manl == 0 && x.s.manh == 0);
/haiku-buildtools/gcc/mpfr/tests/
H A Dtget_set_d64.c50 printf ("%d", (x.s.manh >> (i - 1)) & 1);

Completed in 192 milliseconds