HomeSort by relevance Sort by last modified time
    Searched refs:zSig (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
275 together to form the result. This means that any integer portion of `zSig'
278 than the desired result exponent whenever `zSig' is a complete, normalized
282 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
285 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig;
292 and significand `zSig', and returns the proper single-precision floating-
302 The input significand `zSig' has its binary point between bits 30
304 significand must be normalized or smaller. If `zSig' is not normalized,
306 and it must not require rounding. In the usual case that `zSig' is
312 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/
softfloat.c 168 Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
171 together to form the result. This means that any integer portion of `zSig'
174 than the desired result exponent whenever `zSig' is a complete, normalized
178 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
181 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig;
188 and significand `zSig', and returns the proper single-precision floating-
198 The input significand `zSig' has its binary point between bits 30
200 significand must be normalized or smaller. If `zSig' is not normalized,
202 and it must not require rounding. In the usual case that `zSig' is
208 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits32/
softfloat.c 169 Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
172 together to form the result. This means that any integer portion of `zSig'
175 than the desired result exponent whenever `zSig' is a complete, normalized
179 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
182 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig;
189 and significand `zSig', and returns the proper single-precision floating-
199 The input significand `zSig' has its binary point between bits 30
201 significand must be normalized or smaller. If `zSig' is not normalized,
203 and it must not require rounding. In the usual case that `zSig' is
209 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
    [all...]

Completed in 399 milliseconds