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

  /src/lib/libc/softfloat/bits32/
softfloat.c 169 Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
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',
209 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
225 if ( zSign ) {
240 return packFloat32( zSign, 0xFF, 0 ) - ( roundIncrement == 0 );
257 return packFloat32( zSign, zExp, zSig );
263 Takes an abstract floating-point value having sign `zSign', exponent `zExp',
272 normalizeRoundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig
    [all...]
softfloat.c 169 Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
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',
209 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
225 if ( zSign ) {
240 return packFloat32( zSign, 0xFF, 0 ) - ( roundIncrement == 0 );
257 return packFloat32( zSign, zExp, zSig );
263 Takes an abstract floating-point value having sign `zSign', exponent `zExp',
272 normalizeRoundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig
    [all...]
  /src/sys/lib/libkern/
softfloat.c 97 | input. If `zSign' is 1, the input is negated before being converted to an
105 static int32 roundAndPackInt32( flag zSign, bits64 absZ )
121 if ( zSign ) {
133 if ( zSign ) z = - z;
134 if ( ( absZ>>32 ) || ( z && ( ( z < 0 ) ^ zSign ) ) ) {
136 return zSign ? (sbits32) 0x80000000 : 0x7FFFFFFF;
147 | If `zSign' is 1, the input is negated before being converted to an integer.
155 static int64 roundAndPackInt64( flag zSign, bits64 absZ0, bits64 absZ1 )
169 if ( zSign ) {
183 if ( zSign ) z = - z
    [all...]
softfloat.c 97 | input. If `zSign' is 1, the input is negated before being converted to an
105 static int32 roundAndPackInt32( flag zSign, bits64 absZ )
121 if ( zSign ) {
133 if ( zSign ) z = - z;
134 if ( ( absZ>>32 ) || ( z && ( ( z < 0 ) ^ zSign ) ) ) {
136 return zSign ? (sbits32) 0x80000000 : 0x7FFFFFFF;
147 | If `zSign' is 1, the input is negated before being converted to an integer.
155 static int64 roundAndPackInt64( flag zSign, bits64 absZ0, bits64 absZ1 )
169 if ( zSign ) {
183 if ( zSign ) z = - z
    [all...]
  /src/lib/libc/softfloat/bits64/
softfloat.c 117 input. If `zSign' is 1, the input is negated before being converted to an
125 static int32 roundAndPackInt32( flag zSign, bits64 absZ )
141 if ( zSign ) {
153 if ( zSign ) z = - z;
154 if ( ( absZ>>32 ) || ( z && ( ( z < 0 ) ^ zSign ) ) ) {
156 return zSign ? (sbits32) 0x80000000 : 0x7FFFFFFF;
168 If `zSign' is 1, the input is negated before being converted to an integer.
176 static int64 roundAndPackInt64( flag zSign, bits64 absZ0, bits64 absZ1 )
190 if ( zSign ) {
204 if ( zSign ) z = - z
    [all...]
softfloat.c 117 input. If `zSign' is 1, the input is negated before being converted to an
125 static int32 roundAndPackInt32( flag zSign, bits64 absZ )
141 if ( zSign ) {
153 if ( zSign ) z = - z;
154 if ( ( absZ>>32 ) || ( z && ( ( z < 0 ) ^ zSign ) ) ) {
156 return zSign ? (sbits32) 0x80000000 : 0x7FFFFFFF;
168 If `zSign' is 1, the input is negated before being converted to an integer.
176 static int64 roundAndPackInt64( flag zSign, bits64 absZ0, bits64 absZ1 )
190 if ( zSign ) {
204 if ( zSign ) z = - z
    [all...]

Completed in 126 milliseconds