Home | History | Annotate | Download | only in libkern

Lines Matching defs:b0

326 | value formed by concatenating `b0' and `b1'.  Addition is modulo 2^128, so
333 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
339 *z0Ptr = a0 + b0 + ( z1 < a1 );
345 | 192-bit value formed by concatenating `b0', `b1', and `b2'. Addition is
356 bits64 b0,
371 z0 = a0 + b0;
382 | Subtracts the 128-bit value formed by concatenating `b0' and `b1' from the
391 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
395 *z0Ptr = a0 - b0 - ( a1 < b1 );
400 | Subtracts the 192-bit value formed by concatenating `b0', `b1', and `b2'
412 bits64 b0,
427 z0 = a0 - b0;
496 b0' and `b1' to obtain a 256-bit
505 bits64 b0,
517 mul64To128( a1, b0, &z1, &more2 );
519 mul64To128( a0, b0, &z0, &more1 );
542 bits64 b0, b1;
547 b0 = b>>32;
548 z = ( b0<<32 <= a0 ) ? LIT64( 0xFFFFFFFF00000000 ) : ( a0 / b0 )<<32;
554 add128( rem0, rem1, b0, b1, &rem0, &rem1 );
557 z |= ( b0<<32 <= rem0 ) ? 0xFFFFFFFF : rem0 / b0;
667 | is equal to the 128-bit value formed by concatenating `b0' and `b1'.
671 INLINE flag eq128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
674 return ( a0 == b0 ) && ( a1 == b1 );
680 | than or equal to the 128-bit value formed by concatenating `b0' and `b1'.
684 INLINE flag le128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
687 return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 <= b1 ) );
693 | than the 128-bit value formed by concatenating `b0' and `b1'. Otherwise,
697 INLINE flag lt128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
700 return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 < b1 ) );
706 | not equal to the 128-bit value formed by concatenating `b0' and `b1'.
710 INLINE flag ne128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
713 return ( a0 != b0 ) || ( a1 != b1 );