Home | History | Annotate | Download | only in quad

Lines Matching defs:aa

54 	union uu aa;
58 aa.q = a;
60 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS);
61 aa.ul[L] = 0;
63 aa.ul[H] = (aa.ul[H] << shift) |
64 (aa.ul[L] >> (INT_BITS - shift));
65 aa.ul[L] <<= shift;
67 return (aa.q);