| /src/external/gpl3/gcc/dist/libgcc/soft-fp/ |
| fixdfbitint.c | 41 USItype rsigned = rprec < 0; local 49 if (A_e < _FP_EXPBIAS_D || (A_s && !rsigned)) 53 : _FP_EXPBIAS_D + arprec - rsigned)) 61 else if (A_e >= _FP_EXPBIAS_D + DI_BITS - rsigned) 63 shift = A_e - (_FP_EXPBIAS_D + DI_BITS - rsigned - 1); 67 FP_TO_INT_D (rv, A, rsize, rsigned); 69 FP_TO_BITINT (r, rn, arprec, shift, rv, rsize, rsigned, ovf, DI);
|
| fixsfbitint.c | 41 USItype rsigned = rprec < 0; local 49 if (A_e < _FP_EXPBIAS_S || (A_s && !rsigned)) 53 : _FP_EXPBIAS_S + arprec - rsigned)) 61 else if (A_e >= _FP_EXPBIAS_S + SI_BITS - rsigned) 63 shift = A_e - (_FP_EXPBIAS_S + SI_BITS - rsigned - 1); 67 FP_TO_INT_S (rv, A, rsize, rsigned); 69 FP_TO_BITINT (r, rn, arprec, shift, rv, rsize, rsigned, ovf, SI);
|
| fixtfbitint.c | 51 USItype rsigned = rprec < 0; local 59 if (A_e < _FP_EXPBIAS_Q || (A_s && !rsigned)) 63 : _FP_EXPBIAS_Q + arprec - rsigned)) 71 else if (A_e >= _FP_EXPBIAS_Q + TI_BITS - rsigned) 73 shift = A_e - (_FP_EXPBIAS_Q + TI_BITS - rsigned - 1); 77 FP_TO_INT_Q (rv, A, rsize, rsigned); 79 FP_TO_BITINT (r, rn, arprec, shift, rv, rsize, rsigned, ovf, TI);
|
| fixxfbitint.c | 52 USItype rsigned = rprec < 0; local 60 if (A_e < _FP_EXPBIAS_E || (A_s && !rsigned)) 64 : _FP_EXPBIAS_E + arprec - rsigned)) 72 else if (A_e >= _FP_EXPBIAS_E + TI_BITS - rsigned) 74 shift = A_e - (_FP_EXPBIAS_E + TI_BITS - rsigned - 1); 78 FP_TO_INT_E (rv, A, rsize, rsigned); 80 FP_TO_BITINT (r, rn, arprec, shift, rv, rsize, rsigned, ovf, TI);
|
| bitint.h | 188 RSIGNED is non-zero if the result is signed bit-precise integer, 194 #define FP_TO_BITINT(r, rn, arprec, shift, rv, rsize, rsigned, ovf, DI) \ 212 if (rsigned && (DI##type) rv >= 0) \ 213 rsigned = 0; \ 224 r[idx] = (rsigned ? (UBILtype) rvs : (UBILtype) rv) << shiftr;\ 237 r[idx] = rsigned ? (UBILtype) rvs : (UBILtype) rv; \ 246 __builtin_memset (r + BITINT_END (0, idx), rsigned ? -1 : 0, \
|
| op-common.h | 1445 /* RSIGNED can have following values: 1457 #define _FP_TO_INT(fs, wc, r, X, rsize, rsigned) \ 1475 else if ((rsigned) == 2 \ 1491 else if ((rsigned) != 2 \ 1495 - ((rsigned) > 0 || X##_s))) \ 1496 || (!(rsigned) && X##_s))) \ 1499 if (rsigned) \ 1513 && (rsigned) \ 1558 if ((rsigned) && X##_s) \ 1560 if ((rsigned) == 2 && X##_e >= _FP_EXPBIAS_##fs + (rsize) - 1) [all...] |
| /src/external/bsd/less/dist/ |
| xbuf.c | 85 * R has size RSIZE, and is signed if and only if RSIGNED is nonzero. 87 static int help_fixup(void *r, uintmax val, int rsize, int rsigned) 89 if (rsigned) 149 * if RSIGNED is nonzero. 151 public int help_ckd_add(void *r, uintmax a, uintmax b, int rsize, int rsigned) 154 return sum < a || help_fixup(r, sum, rsize, rsigned); 157 public int help_ckd_mul(void *r, uintmax a, uintmax b, int rsize, int rsigned) 161 || help_fixup(r, product, rsize, rsigned));
|
| funcs.h | 386 public int help_ckd_add(void *r, uintmax a, uintmax b, int rsize, int rsigned); 387 public int help_ckd_mul(void *r, uintmax a, uintmax b, int rsize, int rsigned);
|
| /src/external/gpl3/gcc.old/dist/libgcc/soft-fp/ |
| op-common.h | 1449 /* RSIGNED can have following values: 1461 #define _FP_TO_INT(fs, wc, r, X, rsize, rsigned) \ 1479 else if ((rsigned) == 2 \ 1495 else if ((rsigned) != 2 \ 1499 - ((rsigned) > 0 || X##_s))) \ 1500 || (!(rsigned) && X##_s))) \ 1503 if (rsigned) \ 1517 && (rsigned) \ 1562 if ((rsigned) && X##_s) \ 1564 if ((rsigned) == 2 && X##_e >= _FP_EXPBIAS_##fs + (rsize) - 1) [all...] |