Searched refs:INT_BITS (Results 1 – 11 of 11) sorted by relevance
48 if (shift >= INT_BITS) { in __ashrdi3()59 s = (aa.sl[H] >> (INT_BITS - 1)) >> 1; in __ashrdi3()61 aa.ul[L] = aa.sl[H] >> (shift - INT_BITS); in __ashrdi3()65 (aa.ul[H] << (INT_BITS - shift)); in __ashrdi3()
49 if (shift >= INT_BITS) { in __lshldi3()50 aa.ul[H] = aa.ul[L] << (shift - INT_BITS); in __lshldi3()54 (aa.ul[L] >> (INT_BITS - shift)); in __lshldi3()
49 if (shift >= INT_BITS) { in __ashldi3()50 aa.ul[H] = aa.ul[L] << (shift - INT_BITS); in __ashldi3()54 (aa.ul[L] >> (INT_BITS - shift)); in __ashldi3()
48 if (shift >= INT_BITS) { in __lshrdi3()49 aa.ul[L] = aa.ul[H] >> (shift - INT_BITS); in __lshrdi3()53 (aa.ul[H] << (INT_BITS - shift)); in __lshrdi3()
48 d = (double)u.ul[H] * (((int)1 << (INT_BITS - 2)) * 4.0); in __floatunsdidf()
64 f = (double)u.ul[H] * (((int)1 << (INT_BITS - 2)) * 4.0); in __floatdisf()
62 d = (double)u.ul[H] * (((int)1 << (INT_BITS - 2)) * 4.0); in __floatdidf()
37 #define ONE_FOURTH ((int)1 << (INT_BITS - 2))
78 #define INT_BITS (sizeof (int) * CHAR_BIT) macro87 unsigned int quote_these_too[(UCHAR_MAX / INT_BITS) + 1];156 (o ? o : &default_quoting_options)->quote_these_too + uc / INT_BITS; in set_char_quoting()157 int shift = uc % INT_BITS; in set_char_quoting()495 && o->quote_these_too[c / INT_BITS] & (1 << (c % INT_BITS)))) in quotearg_buffer_restyled()
83 #define INT_BITS (sizeof(int) * CHAR_BIT) macro