Lines Matching refs:fp32Mant
170 u32 uiFp32, fp32Sign, fp32Exp, fp32Mant, fp32MantBits, fp32Bias; in ConvertFP32ToSmallFP() local
178 fp32Mant = uiFp32 & 0x007FFFFF; in ConvertFP32ToSmallFP()
198 (fp32Mant >> (fp32MantBits - mantBits)); in ConvertFP32ToSmallFP()
228 fp32Mant = 0; in ConvertFP32ToSmallFP()
233 fp32Mant = (fp32Mant | 0x00800000) >> (fp32MantBits - mantBits); in ConvertFP32ToSmallFP()
234 fp32Mant = fp32Mant >> shift; in ConvertFP32ToSmallFP()
237 outFp = (fp32Sign << (expBits + mantBits)) | fp32Mant; in ConvertFP32ToSmallFP()
244 (fp32Mant >> (fp32MantBits - mantBits)); in ConvertFP32ToSmallFP()
259 u32 fp32Sign, fp32Exp, fp32Mant; in ConvertFP32ToUnorm() local
265 fp32Mant = uiFp32 & 0x007FFFFF; in ConvertFP32ToUnorm()
274 if ((fp32Mant != 0x0) || (fp32Sign == 1)) in ConvertFP32ToUnorm()