Searched refs:LONG_BITS (Results 1 – 4 of 4) sorted by relevance
50 if (shift >= LONG_BITS) { in __ashrdi3()60 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1; in __ashrdi3()62 aa.sl[H] >> (shift - LONG_BITS); in __ashrdi3()66 (aa.ul[H] << (LONG_BITS - shift)); in __ashrdi3()
50 if (shift >= LONG_BITS) { in __lshrdi3()52 aa.ul[H] >> (shift - LONG_BITS); in __lshrdi3()56 (aa.ul[H] << (LONG_BITS - shift)); in __lshrdi3()
53 if (shift >= LONG_BITS) {55 aa.ul[L] << (shift - LONG_BITS);59 (aa.ul[L] >> (LONG_BITS - shift));
86 #define LONG_BITS (sizeof(long) * CHAR_BIT) macro