Home | History | Annotate | Download | only in fpu

Lines Matching full:low

511     return a.low;
566 z.low = zSig;
797 return a.low;
895 z.low = zSig1;
3556 z.low += lastBitMask>>1;
3557 if ( ( z.low & roundBitsMask ) == 0 ) z.low &= ~ lastBitMask;
3561 z.low += roundBitsMask;
3564 z.low &= ~ roundBitsMask;
3565 if ( z.low == 0 ) {
3567 z.low = LIT64( 0x8000000000000000 );
3569 if ( z.low != a.low ) STATUS(float_exception_flags) |= float_flag_inexact;
3667 z.low = floatx80_default_nan_low;
3783 z.low = floatx80_default_nan_low;
3847 z.low = floatx80_default_nan_low;
3924 z.low = floatx80_default_nan_low;
4012 z.low = floatx80_default_nan_low;
4078 ( a.low == b.low )
4080 || ( ( a.low == 0 )
4110 || ( ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
4114 aSign ? le128( b.high, b.low, a.high, a.low )
4115 : le128( a.high, a.low, b.high, b.low );
4143 && ( ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
4147 aSign ? lt128( b.high, b.low, a.high, a.low )
4148 : lt128( a.high, a.low, b.high, b.low );
4171 ( a.low == b.low )
4173 || ( ( a.low == 0 )
4206 || ( ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
4210 aSign ? le128( b.high, b.low, a.high, a.low )
4211 : le128( a.high, a.low, b.high, b.low );
4242 && ( ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
4246 aSign ? lt128( b.high, b.low, a.high, a.low )
4247 : lt128( a.high, a.low, b.high, b.low );
4575 add128( z.high, z.low, 0, lastBitMask>>1, &z.high, &z.low );
4576 if ( ( z.low & roundBitsMask ) == 0 ) z.low &= ~ lastBitMask;
4579 if ( (sbits64) z.low
4581 if ( (bits64) ( z.low<<1 ) == 0 ) z.high &= ~1;
4588 add128( z.high, z.low, 0, roundBitsMask, &z.high, &z.low );
4591 z.low &= ~ roundBitsMask;
4595 if ( ( ( (bits64) ( a.high<<1 ) ) | a.low ) == 0 ) return a;
4621 z.low = 0;
4626 if ( ( ( z.high & roundBitsMask ) | a.low ) == 0 ) {
4633 z.high |= ( a.low != 0 );
4639 if ( ( z.low != a.low ) || ( z.high != a.high ) ) {
4758 z.low = float128_default_nan_low;
4888 z.low = float128_default_nan_low;
4957 z.low = float128_default_nan_low;
5039 z.low = float128_default_nan_low;
5138 z.low = float128_default_nan_low;
5201 ( a.low == b.low )
5203 || ( ( a.low == 0 )
5233 || ( ( ( (bits64) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
5237 aSign ? le128( b.high, b.low, a.high, a.low )
5238 : le128( a.high, a.low, b.high, b.low );
5265 && ( ( ( (bits64) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
5269 aSign ? lt128( b.high, b.low, a.high, a.low )
5270 : lt128( a.high, a.low, b.high, b.low );
5293 ( a.low == b.low )
5295 || ( ( a.low == 0 )
5328 || ( ( ( (bits64) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
5332 aSign ? le128( b.high, b.low, a.high, a.low )
5333 : le128( a.high, a.low, b.high, b.low );
5364 && ( ( ( (bits64) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
5368 aSign ? lt128( b.high, b.low, a.high, a.low )
5369 : lt128( a.high, a.low, b.high, b.low );
5551 if ( ( ( ( a.high | b.high )<<1 ) | a.low | b.low ) == 0 ) {
5558 if (a.low == b.low && a.high == b.high) {
5561 return 1 - 2 * (aSign ^ ( lt128( a.high, a.low, b.high, b.low ) ));