Lines Matching refs:low
56 bits64 high, low;
116 z.low = 0;
248 z.low = 0;
326 | `high' and `low' values hold the most- and least-significant bits,
347 aLow = a.low & ~ LIT64( 0x4000000000000000 );
351 && ( a.low == aLow );
353 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
365 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
369 aLow = a.low & ~ LIT64( 0x4000000000000000 );
373 && ( a.low == aLow );
389 z.low = 0;
390 z.high = a.low;
404 z.low = a.high;
406 z.low = floatx80_default_nan_low;
422 a.low = floatx80_default_nan_low;
432 a.low &= ~LIT64( 0xC000000000000000 );
433 b.low &= ~LIT64( 0xC000000000000000 );
435 a.low |= LIT64( 0xC000000000000000 );
436 b.low |= LIT64( 0xC000000000000000 );
446 if ( a.low < b.low ) return b;
447 if ( b.low < a.low ) return a;
461 | `low' values hold the most- and least-significant bits, respectively.
481 && ( a.low || ( a.high & LIT64( 0x00007FFFFFFFFFFF ) ) );
485 && ( a.low || ( a.high & LIT64( 0x0000FFFFFFFFFFFF ) ) );
499 && ( a.low || ( a.high & LIT64( 0x0000FFFFFFFFFFFF ) ) );
503 && ( a.low || ( a.high & LIT64( 0x00007FFFFFFFFFFF ) ) );
519 shortShift128Left( a.high, a.low, 16, &z.high, &z.low );
532 shift128Right( a.high, a.low, 16, &z.high, &z.low );
548 a.low = float128_default_nan_low;
572 if ( lt128( a.high<<1, a.low, b.high<<1, b.low ) ) return b;
573 if ( lt128( b.high<<1, b.low, a.high<<1, a.low ) ) return a;