Home
last modified time | relevance | path

Searched refs:INT_BITS (Results 1 – 13 of 13) sorted by relevance

/netbsd/src/common/lib/libc/quad/
Dashrdi3.c60 if (shift >= INT_BITS) { in ARM_EABI_ALIAS()
71 s = (aa.sl[H] >> (INT_BITS - 1)) >> 1; in ARM_EABI_ALIAS()
73 aa.ul[L] = aa.sl[H] >> (shift - INT_BITS); in ARM_EABI_ALIAS()
77 (aa.ul[H] << (unsigned int)(INT_BITS - shift)); in ARM_EABI_ALIAS()
Dashldi3.c59 if (shift >= INT_BITS) { in __ashldi3()
60 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS); in __ashldi3()
64 (aa.ul[L] >> (INT_BITS - shift)); in __ashldi3()
Dlshldi3.c61 if (shift >= INT_BITS) { in ARM_EABI_ALIAS()
62 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS); in ARM_EABI_ALIAS()
66 (aa.ul[L] >> (INT_BITS - shift)); in ARM_EABI_ALIAS()
Dlshrdi3.c60 if (shift >= INT_BITS) { in ARM_EABI_ALIAS()
61 aa.ul[L] = aa.ul[H] >> (shift - INT_BITS); in ARM_EABI_ALIAS()
65 (aa.ul[H] << (unsigned int)(INT_BITS - shift)); in ARM_EABI_ALIAS()
Dquad.h90 #define INT_BITS (sizeof(int) * CHAR_BIT) macro
/netbsd/src/external/gpl2/xcvs/dist/lib/
Dquotearg.c81 #define INT_BITS (sizeof (int) * CHAR_BIT) macro
90 unsigned int quote_these_too[(UCHAR_MAX / INT_BITS) + 1];
159 (o ? o : &default_quoting_options)->quote_these_too + uc / INT_BITS; in set_char_quoting()
160 int shift = uc % INT_BITS; in set_char_quoting()
498 && o->quote_these_too[c / INT_BITS] & (1 << (c % INT_BITS)))) in quotearg_buffer_restyled()
/netbsd/src/lib/libc/quad/
Dfloatundidf.c62 d = (double)u.ul[H] * (((int)1 << (unsigned int)(INT_BITS - 2)) * 4.0); in __floatundidf()
Dfloatundisf.c71 f = (double)u.ul[H] * (((int)1 << (unsigned int)(INT_BITS - 2)) * 4.0); in __floatundisf()
Dfloatdisf.c78 f = (double)u.ul[H] * (((int)1 << (unsigned int)(INT_BITS - 2)) * 4.0); in __floatdisf()
Dfloatdidf.c76 d = (double)u.ul[H] * (((int)1 << (unsigned int)(INT_BITS - 2)) * 4.0); in __floatdidf()
Dfixunsdfdi.c51 #define ONE_FOURTH ((int)1 << (unsigned int)(INT_BITS - 2))
Dfixunssfdi.c51 #define ONE_FOURTH ((int)1 << (unsigned int)(INT_BITS - 2))
Dfloatunditf_ieee754.c67 ld = (long double)u.ul[H] * (((int)1 << (INT_BITS - 2)) * 4.0); in __floatunditf()