OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:zsig
(Results
1 - 1
of
1
) sorted by null
/external/qemu/fpu/
softfloat.c
225
| Packs the sign `zSign', exponent `zExp', and significand `
zSig
' into a
228
| together to form the result. This means that any integer portion of `
zSig
'
231
| than the desired result exponent whenever `
zSig
' is a complete, normalized
235
INLINE float32 packFloat32( flag zSign, int16 zExp, bits32
zSig
)
239
( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) +
zSig
);
245
| and significand `
zSig
', and returns the proper single-precision floating-
255
| The input significand `
zSig
' has its binary point between bits 30
257
| significand must be normalized or smaller. If `
zSig
' is not normalized,
259
| and it must not require rounding. In the usual case that `
zSig
' is
265
static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32
zSig
STATUS_PARAM
[
all
...]
Completed in 11 milliseconds