Home | History | Annotate | Download | only in quad

Lines Matching refs:shift

48  * Shift a (signed) quad value left (arithmetic shift left).
49 * This is the same as logical shift left!
52 __ashldi3(quad_t a, qshift_t shift)
56 if (shift == 0)
59 if (shift >= INT_BITS) {
60 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS);
63 aa.ul[H] = (aa.ul[H] << shift) |
64 (aa.ul[L] >> (INT_BITS - shift));
65 aa.ul[L] <<= shift;