Home | History | Annotate | Download | only in quad

Lines Matching defs:aa

56 	union uu aa;
60 aa.q = a;
62 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS);
63 aa.ul[L] = 0;
65 aa.ul[H] = (aa.ul[H] << shift) |
66 (aa.ul[L] >> (INT_BITS - shift));
67 aa.ul[L] <<= shift;
69 return (aa.q);