HomeSort by: relevance | last modified time | path
    Searched refs:INT_BITS (Results 1 - 15 of 15) sorted by relevancy

  /src/common/lib/libc/quad/
ashldi3.c 59 if (shift >= INT_BITS) {
60 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS);
64 (aa.ul[L] >> (INT_BITS - shift));
lshldi3.c 61 if (shift >= INT_BITS) {
62 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS);
66 (aa.ul[L] >> (INT_BITS - shift));
lshrdi3.c 60 if (shift >= INT_BITS) {
61 aa.ul[L] = aa.ul[H] >> (shift - INT_BITS);
65 (aa.ul[H] << (unsigned int)(INT_BITS - shift));
ashrdi3.c 60 if (shift >= INT_BITS) {
67 * INT_BITS is undefined, so we shift (INT_BITS-1),
71 s = (aa.sl[H] >> (INT_BITS - 1)) >> 1;
73 aa.ul[L] = aa.sl[H] >> (shift - INT_BITS);
77 (aa.ul[H] << (unsigned int)(INT_BITS - shift));
quad.h 90 #define INT_BITS (sizeof(int) * CHAR_BIT)
  /src/lib/libc/quad/
floatundidf.c 62 d = (double)u.ul[H] * (((int)1 << (unsigned int)(INT_BITS - 2)) * 4.0);
floatundisf.c 64 * has the units. Ideally we could just set f, add INT_BITS to
71 f = (double)u.ul[H] * (((int)1 << (unsigned int)(INT_BITS - 2)) * 4.0);
floatdidf.c 71 * has the units. Ideally we could just set d, add INT_BITS to
76 d = (double)u.ul[H] * (((int)1 << (unsigned int)(INT_BITS - 2)) * 4.0);
floatdisf.c 71 * has the units. Ideally we could just set f, add INT_BITS to
78 f = (double)u.ul[H] * (((int)1 << (unsigned int)(INT_BITS - 2)) * 4.0);
fixunsdfdi.c 51 #define ONE_FOURTH ((int)1 << (unsigned int)(INT_BITS - 2))
fixunssfdi.c 51 #define ONE_FOURTH ((int)1 << (unsigned int)(INT_BITS - 2))
floatunditf_ieee754.c 67 ld = (long double)u.ul[H] * (((int)1 << (INT_BITS - 2)) * 4.0);
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
quotearg.c 78 #define INT_BITS (sizeof (int) * CHAR_BIT)
87 unsigned int quote_these_too[(UCHAR_MAX / INT_BITS) + 1];
156 (o ? o : &default_quoting_options)->quote_these_too + uc / INT_BITS;
157 int shift = uc % INT_BITS;
501 && o->quote_these_too[c / INT_BITS] & (1 << (c % INT_BITS))))
  /src/external/gpl2/grep/dist/lib/
quotearg.c 91 #define INT_BITS (sizeof (int) * CHAR_BIT)
110 int quote_these_too[(UCHAR_MAX / INT_BITS) + 1];
177 int *p = (o ? o : &default_quoting_options)->quote_these_too + uc / INT_BITS;
178 int shift = uc % INT_BITS;
480 && o->quote_these_too[c / INT_BITS] & (1 << (c % INT_BITS))))
  /src/external/gpl2/xcvs/dist/lib/
quotearg.c 81 #define INT_BITS (sizeof (int) * CHAR_BIT)
90 unsigned int quote_these_too[(UCHAR_MAX / INT_BITS) + 1];
159 (o ? o : &default_quoting_options)->quote_these_too + uc / INT_BITS;
160 int shift = uc % INT_BITS;
498 && o->quote_these_too[c / INT_BITS] & (1 << (c % INT_BITS))))

Completed in 30 milliseconds