| /src/external/lgpl3/gmp/dist/mpf/ |
| add_ui.c | 40 mp_exp_t uexp = u->_mp_exp; local 75 if (uexp > 0) 78 if (uexp > prec) 88 if (uexp > usize) 94 MPN_COPY_DECR (sump + uexp - usize, up, usize); 96 MPN_ZERO (sump + 1, uexp - usize - 1); 99 MPN_COPY (sum->_mp_d, sump, uexp); 101 sum->_mp_size = uexp; 102 sum->_mp_exp = uexp; 116 MPN_COPY_INCR (sump, up, usize - uexp); [all...] |
| cmp_si.c | 39 mp_exp_t uexp; variable 67 uexp = EXP (u); 73 if (uexp != 1 + (abs_vval > GMP_NUMB_MAX)) 74 return (uexp < 1 + (abs_vval > GMP_NUMB_MAX)) ? -usign : usign; 76 if (uexp != 1) 77 return (uexp < 1) ? -usign : usign; 85 if (uexp == 2)
|
| cmp_ui.c | 38 mp_exp_t uexp; variable 52 uexp = EXP (u); 55 if (uexp != 1 + (vval > GMP_NUMB_MAX)) 56 return (uexp < 1 + (vval > GMP_NUMB_MAX)) ? -1 : 1; 58 if (uexp != 1) 59 return (uexp < 1) ? -1 : 1; 67 if (uexp == 2)
|
| cmp.c | 38 mp_exp_t uexp, vexp; variable 66 uexp = EXP(u); 70 if (uexp > vexp) 72 if (uexp < vexp)
|
| sqrt.c | 68 mp_exp_t uexp, expodd; local 83 uexp = u->_mp_exp; 87 expodd = (uexp & 1); 90 r->_mp_exp = (uexp + expodd) / 2; /* ceil(uexp/2) */
|
| ui_sub.c | 57 mp_exp_t uexp; 101 uexp = v->_mp_exp; 102 ediff = uexp - 1; 122 uexp = 0; 124 In that case we have to adjust uexp. */ 129 uexp = 0; 134 vsize--, uexp--; 140 uexp = 1; 271 uexp--; 279 r->_mp_exp = uexp; [all...] |
| div_2exp.c | 84 mp_exp_t uexp = u->_mp_exp; local 109 r->_mp_exp = uexp - exp / GMP_NUMB_BITS; 135 r->_mp_exp = uexp - exp / GMP_NUMB_BITS - 1 + adj;
|
| mul_2exp.c | 78 mp_exp_t uexp = u->_mp_exp; local 103 r->_mp_exp = uexp + exp / GMP_NUMB_BITS; 129 r->_mp_exp = uexp + exp / GMP_NUMB_BITS + adj;
|
| eq.c | 40 mp_exp_t uexp, vexp; local 44 uexp = u->_mp_exp; 70 if (uexp != vexp)
|
| add.c | 40 mp_exp_t uexp; local 94 uexp = u->_mp_exp; 177 uexp += cy; 181 r->_mp_exp = uexp;
|
| /src/external/lgpl3/mpfr/dist/src/ |
| fpif.c | 298 mpfr_uexp_t uexp; local 312 uexp = SAFE_ABS (mpfr_uexp_t, exponent) 315 /* Shift uexp to take the sign bit of the exponent into account. 318 copy_exponent = uexp << 1; 319 MPFR_ASSERTD (copy_exponent > uexp); 325 MPFR_ASSERTD (uexp < exp_sign_bit); 327 uexp |= exp_sign_bit; 330 uexp = exponent + MPFR_MAX_EMBEDDED_EXPONENT; 339 result[0] = uexp; 344 putLittleEndianData (result + 1, (unsigned char *) &uexp, 379 mpfr_uexp_t uexp; local [all...] |
| eq.c | 33 mpfr_exp_t uexp, vexp; local 52 uexp = MPFR_GET_EXP (u); 56 if (uexp != vexp)
|
| set_z_2exp.c | 35 mpfr_uexp_t uexp; local 80 uexp = (mpfr_uexp_t) zn * GMP_NUMB_BITS + (mpfr_uexp_t) e - k; 84 exp = uexp > MPFR_EXP_MAX ? -1 - (mpfr_exp_t) ~uexp : (mpfr_exp_t) uexp;
|
| /src/external/lgpl3/gmp/dist/mpn/generic/ |
| get_d.c | 380 unsigned long uexp; local 409 uexp = exp; 414 uexp = NEG_CAST (unsigned long, exp); 418 if (uexp & 1) 420 while (uexp >>= 1) 423 if (uexp & 1) 428 while (uexp > 0) 431 uexp--;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| data-streamer.cc | 127 bp_pack_value (bp, r->uexp, EXP_BITS); 145 r->uexp = (unsigned) bp_unpack_value (bp, EXP_BITS);
|
| real.h | 54 unsigned int uexp : EXP_BITS; 60 ((int)((REAL)->uexp ^ (unsigned int)(1 << (EXP_BITS - 1))) \ 63 ((REAL)->uexp = ((unsigned int)(EXP) & (unsigned int)((1 << EXP_BITS) - 1)))
|
| print-tree.cc | 91 else if (d.uexp) 108 if (d.uexp) 109 fprintf (file, "%se%u)", psig[start] ? "," : "", d.uexp);
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| real.h | 54 unsigned int uexp : EXP_BITS; 60 ((int)((REAL)->uexp ^ (unsigned int)(1 << (EXP_BITS - 1))) \ 63 ((REAL)->uexp = ((unsigned int)(EXP) & (unsigned int)((1 << EXP_BITS) - 1)))
|
| print-tree.cc | 90 else if (d.uexp) 107 if (d.uexp) 108 fprintf (file, "%se%u)", psig[start] ? "," : "", d.uexp);
|
| /src/games/hack/ |
| hack.h | 172 long int ugold,ugold0,uexp,urexp; member in struct:you
|
| hack.potion.c | 277 u.uexp = newuexp() + 1;
|
| /src/external/gpl3/gcc/dist/libdecnumber/ |
| decCommon.c | 502 uInt uexp=(uInt)(num->exponent+DECBIAS); /* biased exponent */ local 503 uInt code=(uexp>>DECECONL)<<4; /* top two bits of exp */ 507 encode|=(uexp<<(32-6-DECECONL)) & 0x03ffffff; /* exponent continuation */ 597 uInt uexp=(uInt)(exp+DECBIAS); /* biased exponent */ local 598 uInt code=(uexp>>DECECONL)<<4; /* top two bits of exp */ 602 encode|=(uexp<<(32-6-DECECONL)) & 0x03ffffff; /* exponent continuation */
|
| /src/external/gpl3/gcc.old/dist/libdecnumber/ |
| decCommon.c | 502 uInt uexp=(uInt)(num->exponent+DECBIAS); /* biased exponent */ local 503 uInt code=(uexp>>DECECONL)<<4; /* top two bits of exp */ 507 encode|=(uexp<<(32-6-DECECONL)) & 0x03ffffff; /* exponent continuation */ 597 uInt uexp=(uInt)(exp+DECBIAS); /* biased exponent */ local 598 uInt code=(uexp>>DECECONL)<<4; /* top two bits of exp */ 602 encode|=(uexp<<(32-6-DECECONL)) & 0x03ffffff; /* exponent continuation */
|
| /src/external/gpl3/gdb/dist/libdecnumber/ |
| decCommon.c | 502 uInt uexp=(uInt)(num->exponent+DECBIAS); /* biased exponent */ local 503 uInt code=(uexp>>DECECONL)<<4; /* top two bits of exp */ 507 encode|=(uexp<<(32-6-DECECONL)) & 0x03ffffff; /* exponent continuation */ 597 uInt uexp=(uInt)(exp+DECBIAS); /* biased exponent */ local 598 uInt code=(uexp>>DECECONL)<<4; /* top two bits of exp */ 602 encode|=(uexp<<(32-6-DECECONL)) & 0x03ffffff; /* exponent continuation */
|
| /src/external/gpl3/gdb.old/dist/libdecnumber/ |
| decCommon.c | 502 uInt uexp=(uInt)(num->exponent+DECBIAS); /* biased exponent */ local 503 uInt code=(uexp>>DECECONL)<<4; /* top two bits of exp */ 507 encode|=(uexp<<(32-6-DECECONL)) & 0x03ffffff; /* exponent continuation */ 597 uInt uexp=(uInt)(exp+DECBIAS); /* biased exponent */ local 598 uInt code=(uexp>>DECECONL)<<4; /* top two bits of exp */ 602 encode|=(uexp<<(32-6-DECECONL)) & 0x03ffffff; /* exponent continuation */
|