| /src/lib/libm/src/ |
| s_rintl.c | 60 uint32_t expsign; local 64 expsign = GET_EXPSIGN(&u); 65 ex = expsign & 0x7fff; 72 sign = expsign >> 15;
|
| e_asinl.c | 56 int16_t expsign, expt; local 58 expsign = GET_EXPSIGN(&u); 59 expt = expsign & 0x7fff; 94 if(expsign>0) return t; else return -t;
|
| s_atanl.c | 57 int16_t expsign, expt; local 61 expsign = GET_EXPSIGN(&u); 62 expt = expsign & 0x7fff; 67 if(expsign>0) return atanhi[3]+atanlo[3]; 102 return (expsign<0)? -z:z;
|
| e_acosl.c | 66 int16_t expsign, expt; local 68 expsign = GET_EXPSIGN(&u); 69 expt = expsign & 0x7fff; 72 if (expsign>0) return 0.0; /* acos(1) = 0 */ 84 } else if (expsign<0) { /* x < -0.5 */
|
| s_cbrtl.c | 43 uint16_t expsign; local 47 expsign = GET_EXPSIGN(&u); 48 k = expsign & 0x7fff; 84 SET_EXPSIGN(&v, (expsign & 0x8000) | (BIAS + k / 3));
|
| e_rem_pio2l.h | 69 int16_t expsign; local 72 expsign = u.xbits.expsign; 73 ex = expsign & 0x7fff; 88 ex1 = u2.xbits.expsign & 0x7fff; 97 ex1 = u2.xbits.expsign & 0x7fff; 120 u1.xbits.expsign = ex - e0; 133 if(expsign<0) {y[0] = -r; y[1] = -w; return -n;}
|
| /src/lib/libm/ld128/ |
| e_rem_pio2l.h | 71 int16_t expsign, expsign1; local 75 expsign = u.extu_exp | (u.extu_sign << 15); 137 if(expsign<0) {y[0] = -r; y[1] = -w; return -n;}
|
| /src/lib/libm/ld80/ |
| e_rem_pio2l.h | 82 int16_t expsign, expsign1; local 86 expsign = GET_EXPSIGN(&u); 144 if(expsign<0) {y[0] = -r; y[1] = -w; return -n;}
|
| invtrig.h | 72 uint16_t expsign; member in struct:longdouble
|
| /src/external/lgpl3/gmp/dist/printf/ |
| doprntf.c | 241 char expsign; local 260 expsign = (expval >= 0 ? '+' : '-'); 265 p->expfmt, expsign, expval); 270 sprintf (exponent, p->expfmt, expsign, expval);
|
| /src/external/gpl3/gcc/dist/libquadmath/printf/ |
| printf_fp.c | 160 int expsign = 0; 197 if (expsign != 0 && type == 'f' && exponent-- > 0) 635 expsign = 1; 824 if (expsign == 0) 839 if ((expsign == 0 && exponent >= dig_max) 840 || (expsign != 0 && exponent > 4)) 853 intdig_max = expsign == 0 ? exponent + 1 : 0; 903 if (expsign == 0 || type != 'f') 905 assert (expsign == 0 || intdig_max == 1); 1015 exponent += expsign == 0 ? 1 : -1 158 int expsign = 0; local [all...] |
| /src/external/gpl3/gcc.old/dist/libquadmath/printf/ |
| printf_fp.c | 160 int expsign = 0; 197 if (expsign != 0 && type == 'f' && exponent-- > 0) 635 expsign = 1; 824 if (expsign == 0) 839 if ((expsign == 0 && exponent >= dig_max) 840 || (expsign != 0 && exponent > 4)) 853 intdig_max = expsign == 0 ? exponent + 1 : 0; 903 if (expsign == 0 || type != 'f') 905 assert (expsign == 0 || intdig_max == 1); 1015 exponent += expsign == 0 ? 1 : -1 158 int expsign = 0; local [all...] |