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

/haiku-buildtools/gcc/gmp/
H A Dextract-dbl.c42 unsigned long long int manl; local
45 unsigned long int manh, manl; local
74 manl = (((mp_limb_t) 1 << 63)
75 | ((mp_limb_t) x.s.manh << 43) | ((mp_limb_t) x.s.manl << 11));
83 manl = manl << 1;
86 while ((manl & GMP_LIMB_HIGHBIT) == 0);
90 manh = ((mp_limb_t) 1 << 31) | (x.s.manh << 11) | (x.s.manl >> 21);
91 manl = x.s.manl << 1
[all...]
H A Dgmp-impl.h3405 gmp_uint_least32_t manl:32; member in struct:ieee_double_extract::__anon3416
3417 gmp_uint_least32_t manl:32; member in struct:ieee_double_extract::__anon3417
3435 gmp_uint_least32_t manl:32; 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.c36 mp_limb_t manl; local
62 manl = ((MPFR_LIMB_ONE << 63)
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);
66 manl = x.s.manl << 11;
72 manl = ((mp_limb_t) x.s.manh << 43) | ((mp_limb_t) x.s.manl << 11);
75 | (x.s.manl >> 21); /* middle 11 bits */
76 manl
[all...]
H A Dset_d64.c158 d2 = ((x.s.manh << 2) | (x.s.manl >> 30)) & 1023;
159 d3 = (x.s.manl >> 20) & 1023;
160 d4 = (x.s.manl >> 10) & 1023;
161 d5 = x.s.manl & 1023;
174 /* manh has 20 bits, manl has 32 bits */
176 rp[0] = x.s.manl;
183 rp[0] = x.s.manl;
H A Dget_ld.c143 ld.s.manl = (tmpmant[0] >> denorm);
148 ld.s.manl = tmpmant[0];
153 ld.s.manl = (tmpmant[0] >> denorm) | (tmpmant[1] << (32 - denorm));
158 ld.s.manl = tmpmant[1] >> (denorm - 32);
H A Dget_d64.c251 x.s.manl = (d2 & 3) << 30;
252 x.s.manl |= (d3 << 20) | (d4 << 10) | d5;
272 x.s.manl = rp[0]; /* 32 bits */
279 x.s.manl = rp[0];
H A Dset_ld.c297 tmpmant[0] = ((mp_limb_t) x.s.manh << 32) | ((mp_limb_t) x.s.manl);
299 tmpmant[0] = (mp_limb_t) x.s.manl;
H A Dmpfr-impl.h621 unsigned int manl : 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
299 u.s.manl = mlo;
394 u.s.manl = m0;
399 u.s.manl = m1;
/haiku-buildtools/gcc/gmp/tests/
H A Dmisc.c437 x.s.manl = 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.c52 printf ("%d", (x.s.manl >> (i - 1)) & 1);

Completed in 175 milliseconds