Home
last modified time | relevance | path

Searched refs:SINGLE_MAXE (Results 1 – 3 of 3) sorted by relevance

/titanic_50/usr/src/lib/libbc/libc/gen/common/
H A Ddecimal_bin.c437 if (pd->exponent > SINGLE_MAXE) { /* Guaranteed overflow. */
442 } else if (pd->exponent >= -SINGLE_MAXE) { /* Guaranteed in range. */
444 } else if (pd->exponent <= (-SINGLE_MAXE - DECIMAL_STRING_LENGTH)) { /* Guaranteed deep
451 for (i = 0; (pd->ds[i] != 0) && (i < (-pd->exponent - SINGLE_MAXE)); i++);
452 if (i < (-pd->exponent - SINGLE_MAXE)) { /* Deep underflow */
H A Dbase_conversion.h58 #define SINGLE_MAXE 97 /* Maximum decimal exponent we need to macro
/titanic_50/usr/src/lib/libc/port/fp/
H A Ddecimal_bin.c489 #define SINGLE_MAXE 47 macro
537 if (pd->exponent + pd->ndigits > SINGLE_MAXE) { in decimal_to_single()
545 } else if (pd->exponent + pd->ndigits < -SINGLE_MAXE) { in decimal_to_single()