Searched refs:nDoubleUnbiasedExponent (Results 1 – 1 of 1) sorted by relevance
514 const int64_t nDoubleUnbiasedExponent = (int64_t)uDoubleBiasedExponent - DOUBLE_EXPONENT_BIAS; in IEEE754_DoubleToSingle() local519 if(nDoubleUnbiasedExponent == DOUBLE_EXPONENT_ZERO) { in IEEE754_DoubleToSingle()538 } else if(nDoubleUnbiasedExponent == DOUBLE_EXPONENT_INF_OR_NAN) { in IEEE754_DoubleToSingle()576 if(nDoubleUnbiasedExponent >= SINGLE_EXPONENT_MIN && in IEEE754_DoubleToSingle()577 nDoubleUnbiasedExponent <= SINGLE_EXPONENT_MAX && in IEEE754_DoubleToSingle()584 nDoubleUnbiasedExponent); in IEEE754_DoubleToSingle()597 nExponentDifference = -(nDoubleUnbiasedExponent - SINGLE_EXPONENT_MIN); in IEEE754_DoubleToSingle()601 if(nDoubleUnbiasedExponent < SINGLE_EXPONENT_MIN && in IEEE754_DoubleToSingle()602 nDoubleUnbiasedExponent >= SINGLE_EXPONENT_MIN - SINGLE_NUM_SIGNIFICAND_BITS && in IEEE754_DoubleToSingle()