HomeSort by: relevance | last modified time | path
    Searched defs:zExp (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libc/softfloat/bits32/
softfloat.c 169 Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
174 will have an integer portion equal to 1, the `zExp' input should be 1 less
179 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
182 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig;
188 Takes an abstract floating-point value having sign `zSign', exponent `zExp',
202 `zExp' must be 0; in that case, the result returned is a subnormal number,
204 normalized, `zExp' must be 1 less than the ``true'' floating-point exponent.
209 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
234 if ( 0xFD <= (bits16) zExp ) {
235 if ( ( 0xFD < zExp )
    [all...]
  /src/sys/lib/libkern/
softfloat.c 281 | Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
286 | will have an integer portion equal to 1, the `zExp' input should be 1 less
291 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
294 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig;
299 | Takes an abstract floating-point value having sign `zSign', exponent `zExp',
313 | `zExp' must be 0; in that case, the result returned is a subnormal number,
315 | normalized, `zExp' must be 1 less than the ``true'' floating-point exponent.
320 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
345 if ( 0xFD <= (bits16) zExp ) {
346 if ( ( 0xFD < zExp )
    [all...]
  /src/lib/libc/softfloat/bits64/
softfloat.c 275 Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
280 will have an integer portion equal to 1, the `zExp' input should be 1 less
285 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
288 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig;
294 Takes an abstract floating-point value having sign `zSign', exponent `zExp',
308 `zExp' must be 0; in that case, the result returned is a subnormal number,
310 normalized, `zExp' must be 1 less than the ``true'' floating-point exponent.
315 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
340 if ( 0xFD <= (bits16) zExp ) {
341 if ( ( 0xFD < zExp )
    [all...]

Completed in 14 milliseconds