Home | History | Annotate | Download | only in quad

Lines Matching defs:aa

55 	union uu aa;
59 aa.q = a;
71 s = (aa.sl[H] >> (INT_BITS - 1)) >> 1;
73 aa.ul[L] = aa.sl[H] >> (shift - INT_BITS);
74 aa.ul[H] = s;
76 aa.ul[L] = (aa.ul[L] >> shift) |
77 (aa.ul[H] << (unsigned int)(INT_BITS - shift));
79 aa.sl[H] >>= shift;
81 return (aa.q);