Home | History | Annotate | Download | only in bits64

Lines Matching refs:b1

341 value formed by concatenating `b0' and `b1'.  Addition is modulo 2^128, so
348 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
352 z1 = a1 + b1;
361 192-bit value formed by concatenating `b0', `b1', and `b2'. Addition is
373 bits64 b1,
385 z1 = a1 + b1;
399 Subtracts the 128-bit value formed by concatenating `b0' and `b1' from the
408 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
411 *z1Ptr = a1 - b1;
412 *z0Ptr = a0 - b0 - ( a1 < b1 );
418 Subtracts the 192-bit value formed by concatenating `b0', `b1', and `b2'
431 bits64 b1,
443 z1 = a1 - b1;
444 borrow0 = ( a1 < b1 );
517 128-bit value formed by concatenating `b0' and `b1' to obtain a 256-bit
527 bits64 b1,
537 mul64To128( a1, b1, &z2, &z3 );
542 mul64To128( a0, b1, &more1, &more2 );
564 bits64 b0, b1;
575 b1 = b<<32;
576 add128( rem0, rem1, b0, b1, &rem0, &rem1 );
693 is equal to the 128-bit value formed by concatenating `b0' and `b1'.
697 INLINE flag eq128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
700 return ( a0 == b0 ) && ( a1 == b1 );
707 than or equal to the 128-bit value formed by concatenating `b0' and `b1'.
711 INLINE flag le128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
714 return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 <= b1 ) );
721 than the 128-bit value formed by concatenating `b0' and `b1'. Otherwise,
725 INLINE flag lt128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
728 return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 < b1 ) );
735 not equal to the 128-bit value formed by concatenating `b0' and `b1'.
739 INLINE flag ne128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
742 return ( a0 != b0 ) || ( a1 != b1 );