Home
last modified time | relevance | path

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

/optee_os/core/lib/qcbor/src/
H A Dieee754.c514 const int64_t nDoubleUnbiasedExponent = (int64_t)uDoubleBiasedExponent - DOUBLE_EXPONENT_BIAS; in IEEE754_DoubleToSingle() local
519 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()