Searched refs:packFloat16 (Results 1 - 1 of 1) sorted by relevance

/vbox/src/recompiler/fpu/
H A Dsoftfloat.c2549 static bits16 packFloat16(flag zSign, int16 zExp, bits16 zSig) function
2607 return packFloat16(aSign, 0x1f, aSig >> 13);
2610 return packFloat16(aSign, 0, 0);
2658 return packFloat16(aSign, 0x1f, 0);
2663 return packFloat16(aSign, 0x1f, 0x3ff);
2667 return packFloat16(aSign, 0, 0);
2673 return packFloat16(aSign, aExp + 14, aSig >> 13);

Completed in 58 milliseconds