Lines Matching refs:b1
339 value formed by concatenating `b0' and `b1'. Addition is modulo 2^128, so
346 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
350 z1 = a1 + b1;
359 192-bit value formed by concatenating `b0', `b1', and `b2'. Addition is
371 bits64 b1,
383 z1 = a1 + b1;
397 Subtracts the 128-bit value formed by concatenating `b0' and `b1' from the
406 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
409 *z1Ptr = a1 - b1;
410 *z0Ptr = a0 - b0 - ( a1 < b1 );
416 Subtracts the 192-bit value formed by concatenating `b0', `b1', and `b2'
429 bits64 b1,
441 z1 = a1 - b1;
442 borrow0 = ( a1 < b1 );
515 128-bit value formed by concatenating `b0' and `b1' to obtain a 256-bit
525 bits64 b1,
535 mul64To128( a1, b1, &z2, &z3 );
540 mul64To128( a0, b1, &more1, &more2 );
562 bits64 b0, b1;
578 b1 = b<<32;
579 add128( rem0, rem1, b0, b1, &rem0, &rem1 );
702 is equal to the 128-bit value formed by concatenating `b0' and `b1'.
706 INLINE flag eq128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
709 return ( a0 == b0 ) && ( a1 == b1 );
716 than or equal to the 128-bit value formed by concatenating `b0' and `b1'.
720 INLINE flag le128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
723 return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 <= b1 ) );
730 than the 128-bit value formed by concatenating `b0' and `b1'. Otherwise,
734 INLINE flag lt128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
737 return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 < b1 ) );
744 not equal to the 128-bit value formed by concatenating `b0' and `b1'.
748 INLINE flag ne128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
751 return ( a0 != b0 ) || ( a1 != b1 );