Home | History | Annotate | Download | only in libkern

Lines Matching refs:low

70     bits64 high, low;
114 z.low = 0;
183 z.low = 0;
242 | The `high' and `low' values hold the most- and least-significant bits,
256 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
269 aLow = a.low & ~ LIT64( 0x4000000000000000 );
273 && ( a.low == aLow );
289 z.low = 0;
290 z.high = a.low<<1;
304 z.low = LIT64( 0xC000000000000000 ) | ( a.high>>1 );
324 a.low |= LIT64( 0xC000000000000000 );
325 b.low |= LIT64( 0xC000000000000000 );
334 if ( a.low < b.low ) return b;
335 if ( b.low < a.low ) return a;
350 | `low' values hold the most- and least-significant bits, respectively.
365 && ( a.low || ( a.high & LIT64( 0x0000FFFFFFFFFFFF ) ) );
379 && ( a.low || ( a.high & LIT64( 0x00007FFFFFFFFFFF ) ) );
395 shortShift128Left( a.high, a.low, 16, &z.high, &z.low );
409 shift128Right( a.high, a.low, 16, &z.high, &z.low );
439 if ( lt128( a.high<<1, a.low, b.high<<1, b.low ) ) return b;
440 if ( lt128( b.high<<1, b.low, a.high<<1, a.low ) ) return a;