Lines Matching defs:a2
207 | Shifts the 192-bit value formed by concatenating `a0', `a1', and `a2' right
216 | (This routine makes more sense if `a0', `a1', and `a2' are considered
217 | to form a fixed-point value with binary point between `a1' and `a2'. This
229 bits64 a2,
240 z2 = a2;
256 a2 |= a1;
268 z2 |= ( a2 != 0 );
295 | Shifts the 192-bit value formed by concatenating `a0', `a1', and `a2' left
306 bits64 a2,
316 z2 = a2<<count;
321 z1 |= a2>>negCount;
350 | Adds the 192-bit value formed by concatenating `a0', `a1', and `a2' to the
361 bits64 a2,
373 z2 = a2 + b2;
374 carry1 = ( z2 < a2 );
407 | from the 192-bit value formed by concatenating `a0', `a1', and `a2'.
417 bits64 a2,
429 z2 = a2 - b2;
430 borrow1 = ( a2 < b2 );