Home | History | Annotate | Download | only in quad

Lines Matching defs:aa

55 	union uu aa;
59 aa.q = a;
61 aa.ul[L] = aa.ul[H] >> (shift - INT_BITS);
62 aa.ul[H] = 0;
64 aa.ul[L] = (aa.ul[L] >> shift) |
65 (aa.ul[H] << (unsigned int)(INT_BITS - shift));
66 aa.ul[H] >>= shift;
68 return (aa.q);