HomeSort by relevance Sort by last modified time
    Searched refs:zExp (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits64/
softfloat.c 272 Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
277 will have an integer portion equal to 1, the `zExp' input should be 1 less
282 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
285 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig;
291 Takes an abstract floating-point value having sign `zSign', exponent `zExp',
305 `zExp' must be 0; in that case, the result returned is a subnormal number,
307 normalized, `zExp' must be 1 less than the ``true'' floating-point exponent.
312 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
337 if ( 0xFD <= (bits16) zExp ) {
338 if ( ( 0xFD < zExp )
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/
softfloat.c 168 Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
173 will have an integer portion equal to 1, the `zExp' input should be 1 less
178 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
181 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig;
187 Takes an abstract floating-point value having sign `zSign', exponent `zExp',
201 `zExp' must be 0; in that case, the result returned is a subnormal number,
203 normalized, `zExp' must be 1 less than the ``true'' floating-point exponent.
208 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
233 if ( 0xFD <= (bits16) zExp ) {
234 if ( ( 0xFD < zExp )
    [all...]
  /device/linaro/bootloader/edk2/StdLib/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...]

Completed in 490 milliseconds