Lines Matching refs:a1

87 Shifts the 128-bit value formed by concatenating `a0' and `a1' right by 64
95 (This routine makes more sense if `a0' and `a1' are considered to form a
96 fixed-point value with binary point between `a0' and `a1'. This fixed-point
105 bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
111 z1 = a1;
115 z1 = ( a0<<negCount ) | ( a1 != 0 );
120 z1 = a0 | ( a1 != 0 );
123 z1 = ( ( a0 | a1 ) != 0 );
134 Shifts the 128-bit value formed by concatenating `a0' and `a1' right by the
143 bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
149 z1 = a1;
153 z1 = ( a0<<negCount ) | ( a1>>count );
167 Shifts the 128-bit value formed by concatenating `a0' and `a1' right by the
172 or 1, depending on whether the concatenation of `a0' and `a1' is zero or
179 bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
185 z1 = a1;
189 z1 = ( a0<<negCount ) | ( a1>>count ) | ( ( a1<<negCount ) != 0 );
194 z1 = a0 | ( a1 != 0 );
197 z1 = ( a0>>( count & 63 ) ) | ( ( ( a0<<negCount ) | a1 ) != 0 );
200 z1 = ( ( a0 | a1 ) != 0 );
211 Shifts the 192-bit value formed by concatenating `a0', `a1', and `a2' right
220 (This routine makes more sense if `a0', `a1', and `a2' are considered
221 to form a fixed-point value with binary point between `a1' and `a2'. This
232 bits64 a1,
245 z1 = a1;
250 z2 = a1<<negCount;
251 z1 = ( a0<<negCount ) | ( a1>>count );
256 z2 = a1;
260 a2 |= a1;
282 Shifts the 128-bit value formed by concatenating `a0' and `a1' left by the
290 bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
293 *z1Ptr = a1<<count;
295 ( count == 0 ) ? a0 : ( a0<<count ) | ( a1>>( ( - count ) & 63 ) );
301 Shifts the 192-bit value formed by concatenating `a0', `a1', and `a2' left
311 bits64 a1,
323 z1 = a1<<count;
328 z0 |= a1>>negCount;
338 Adds the 128-bit value formed by concatenating `a0' and `a1' to the 128-bit
346 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
350 z1 = a1 + b1;
352 *z0Ptr = a0 + b0 + ( z1 < a1 );
358 Adds the 192-bit value formed by concatenating `a0', `a1', and `a2' to the
368 bits64 a1,
383 z1 = a1 + b1;
384 carry0 = ( z1 < a1 );
398 128-bit value formed by concatenating `a0' and `a1'. Subtraction is modulo
406 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
409 *z1Ptr = a1 - b1;
410 *z0Ptr = a0 - b0 - ( a1 < b1 );
417 from the 192-bit value formed by concatenating `a0', `a1', and `a2'.
426 bits64 a1,
441 z1 = a1 - b1;
442 borrow0 = ( a1 < b1 );
485 Multiplies the 128-bit value formed by concatenating `a0' and `a1' by `b' to
494 bits64 a1,
503 mul64To128( a1, b, &z1, &z2 );
514 Multiplies the 128-bit value formed by concatenating `a0' and `a1' to the
523 bits64 a1,
535 mul64To128( a1, b1, &z2, &z3 );
536 mul64To128( a1, b0, &z1, &more2 );
553 `b' into the 128-bit value formed by concatenating `a0' and `a1'. The
560 static bits64 estimateDiv128To64( bits64 a0, bits64 a1, bits64 b )
575 sub128( a0, a1, term0, term1, &rem0, &rem1 );
701 Returns 1 if the 128-bit value formed by concatenating `a0' and `a1'
706 INLINE flag eq128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
709 return ( a0 == b0 ) && ( a1 == b1 );
715 Returns 1 if the 128-bit value formed by concatenating `a0' and `a1' is less
720 INLINE flag le128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
723 return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 <= b1 ) );
729 Returns 1 if the 128-bit value formed by concatenating `a0' and `a1' is less
734 INLINE flag lt128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
737 return ( a0 < b0 ) || ( ( a0 == b0 ) && ( a1 < b1 ) );
743 Returns 1 if the 128-bit value formed by concatenating `a0' and `a1' is
748 INLINE flag ne128( bits64 a0, bits64 a1, bits64 b0, bits64 b1 )
751 return ( a0 != b0 ) || ( a1 != b1 );