Home
last modified time | relevance | path

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

/optee_os/core/lib/qcbor/src/
H A Dieee754.c323 int32_t nExponentDifference; in IEEE754_SingleToHalf() local
424 nExponentDifference = -(nSingleUnbiasedExponent - HALF_EXPONENT_MIN); in IEEE754_SingleToHalf()
429 … nShiftAmount = nExponentDifference + (SINGLE_NUM_SIGNIFICAND_BITS - HALF_NUM_SIGNIFICAND_BITS); in IEEE754_SingleToHalf()
502 int64_t nExponentDifference; in IEEE754_DoubleToSingle() local
597 nExponentDifference = -(nDoubleUnbiasedExponent - SINGLE_EXPONENT_MIN); in IEEE754_DoubleToSingle()
598 …nShiftAmount = nExponentDifference + (DOUBLE_NUM_SIGNIFICAND_BITS - SINGLE_NUM_SIGNIFICAND_… in IEEE754_DoubleToSingle()