Searched refs:fp32Exp (Results 1 – 1 of 1) sorted by relevance
170 u32 uiFp32, fp32Sign, fp32Exp, fp32Mant, fp32MantBits, fp32Bias; in ConvertFP32ToSmallFP() local177 fp32Exp = (uiFp32 & 0x7F800000) >> 23; in ConvertFP32ToSmallFP()189 if (fp32Exp == 0xff) in ConvertFP32ToSmallFP()210 else if (fp32Exp > (fp32Bias + bias)) in ConvertFP32ToSmallFP()216 else if (fp32Exp < (fp32Bias - (bias - 1))) in ConvertFP32ToSmallFP()223 shift = fp32Bias - (bias - 1) - fp32Exp; in ConvertFP32ToSmallFP()243 ((fp32Exp + bias - fp32Bias) << mantBits) | in ConvertFP32ToSmallFP()259 u32 fp32Sign, fp32Exp, fp32Mant; in ConvertFP32ToUnorm() local264 fp32Exp = (uiFp32 & 0x7F800000) >> 23; in ConvertFP32ToUnorm()271 if (fp32Exp == 0xff) in ConvertFP32ToUnorm()