Searched refs:LONG_BITS (Results 1 – 4 of 4) sorted by relevance
49 if (shift >= LONG_BITS) { in ___ashrdi3()59 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1; in ___ashrdi3()61 aa.sl[H] >> (shift - LONG_BITS); in ___ashrdi3()65 (aa.ul[H] << (LONG_BITS - shift)); in ___ashrdi3()
50 if (shift >= LONG_BITS) { in ___ashldi3()52 aa.ul[L] << (shift - LONG_BITS); in ___ashldi3()56 (aa.ul[L] >> (LONG_BITS - shift)); in ___ashldi3()
49 if (shift >= LONG_BITS) { in ___lshrdi3()51 aa.ul[H] >> (shift - LONG_BITS); in ___lshrdi3()55 (aa.ul[H] << (LONG_BITS - shift)); in ___lshrdi3()
103 #define LONG_BITS (sizeof (long) * CHAR_BIT) macro