Lines Matching refs:a2
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
233 bits64 a2,
244 z2 = a2;
260 a2 |= a1;
272 z2 |= ( a2 != 0 );
301 Shifts the 192-bit value formed by concatenating `a0', `a1', and `a2' left
312 bits64 a2,
322 z2 = a2<<count;
327 z1 |= a2>>negCount;
358 Adds the 192-bit value formed by concatenating `a0', `a1', and `a2' to the
369 bits64 a2,
381 z2 = a2 + b2;
382 carry1 = ( z2 < a2 );
417 from the 192-bit value formed by concatenating `a0', `a1', and `a2'.
427 bits64 a2,
439 z2 = a2 - b2;
440 borrow1 = ( a2 < b2 );