Searched refs:expBits (Results 1 – 1 of 1) sorted by relevance
167 u32 expBits, ///< Exponent bits in destination format in ConvertFP32ToSmallFP() argument184 bias = (1 << (expBits - 1)) - 1; in ConvertFP32ToSmallFP()187 maxExp = (1 << expBits) - 1; in ConvertFP32ToSmallFP()197 outFp = (fp32Sign << (expBits + mantBits)) | (maxExp << mantBits) | in ConvertFP32ToSmallFP()213 outFp = (fp32Sign << (expBits + mantBits)) | ((maxExp - 1) << mantBits) | in ConvertFP32ToSmallFP()237 outFp = (fp32Sign << (expBits + mantBits)) | fp32Mant; in ConvertFP32ToSmallFP()242 outFp = (fp32Sign << (expBits + mantBits)) | in ConvertFP32ToSmallFP()248 ASSERT((outFp & ~((1 << (signBit + expBits + mantBits)) - 1)) == 0x0); in ConvertFP32ToSmallFP()