Home | History | Annotate | Download | only in Softfloat

Lines Matching refs:high

112     bits64 high, low;

169 z.high = ( (bits64) a )<<41;
183 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | (bits32)( a.high>>41 );
271 z.high = FLOAT64_DEMANGLE(a)<<12;
288 | ( a.high>>12 ) );
324 `high' and `low' values hold the most- and least-significant bits,
340 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
356 ( ( a.high & 0x7FFF ) == 0x7FFF )
374 z.sign = a.high>>15;
376 z.high = a.low<<1;
391 z.low = LIT64( 0xC000000000000000 ) | ( a.high>>1 );
392 z.high = ( ( (bits16) a.sign )<<15 ) | 0x7FFF;
430 The pattern for a default generated quadruple-precision NaN. The `high' and
447 ( (bits64)LIT64( 0xFFFE000000000000 ) <= (bits64) ( a.high<<1 ) )
448 && ( a.low || ( a.high & LIT64( 0x0000FFFFFFFFFFFF ) ) );
462 ( ( ( a.high>>47 ) & 0xFFFF ) == 0xFFFE )
463 && ( a.low || ( a.high & LIT64( 0x00007FFFFFFFFFFF ) ) );
479 z.sign = (flag)(a.high>>63);
480 shortShift128Left( a.high, a.low, 16, &z.high, &z.low );
495 shift128Right( a.high, a.low, 16, &z.high, &z.low );
496 z.high |= ( ( (bits64) a.sign )<<63 ) | LIT64( 0x7FFF800000000000 );
516 a.high |= LIT64( 0x0000800000000000 );
517 b.high |= LIT64( 0x0000800000000000 );