Home
last modified time | relevance | path

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

/CafeSDK-2.12.13-1/system/src/lib/gx2ut/
Dgx2utClear.cpp172 u32 outFp; in ConvertFP32ToSmallFP() local
197 outFp = (fp32Sign << (expBits + mantBits)) | (maxExp << mantBits) | in ConvertFP32ToSmallFP()
202 outFp = 0; in ConvertFP32ToSmallFP()
208 outFp = 0; 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()
250 return outFp; in ConvertFP32ToSmallFP()