HomeSort by relevance Sort by last modified time
    Searched full:zexp (Results 1 - 1 of 1) sorted by null

  /external/qemu/fpu/
softfloat.c 270 | Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
275 | will have an integer portion equal to 1, the `zExp' input should be 1 less
280 INLINE float32 packFloat32( flag zSign, int16 zExp, uint32_t zSig )
284 ( ( (uint32_t) zSign )<<31 ) + ( ( (uint32_t) zExp )<<23 ) + zSig);
289 | Takes an abstract floating-point value having sign `zSign', exponent `zExp',
303 | `zExp' must be 0; in that case, the result returned is a subnormal number,
305 | normalized, `zExp' must be 1 less than the ``true'' floating-point exponent.
310 static float32 roundAndPackFloat32( flag zSign, int16 zExp, uint32_t zSig STATUS_PARAM)
335 if ( 0xFD <= (uint16_t) zExp ) {
336 if ( ( 0xFD < zExp )
    [all...]

Completed in 61 milliseconds