Home | History | Annotate | Download | only in wcstox

Lines Matching defs:e2

97 	int e2;
184 e2 = 0;
217 e2 -= 29;
256 e2 += sh;
284 if (bits > LDBL_MANT_DIG+e2-emin) {
285 bits = LDBL_MANT_DIG+e2-emin;
318 if ((e2+LDBL_MANT_DIG & INT_MAX) > emax-5) {
320 if (denormal && bits==LDBL_MANT_DIG+e2-emin)
323 e2++;
325 if (e2+LDBL_MANT_DIG>emax || (denormal && frac))
329 return scalbnl(y, e2);
341 long long e2 = 0;
390 e2 = scanexp(f, pok);
391 if (e2 == LLONG_MIN) {
398 e2 = 0;
403 e2 += 4*rp - 32;
406 if (e2 > -emin) {
410 if (e2 < emin-2*LDBL_MANT_DIG) {
423 e2--;
426 if (bits > 32+e2-emin) {
427 bits = 32+e2-emin;
441 return scalbnl(y, e2);