Home
last modified time | relevance | path

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

/mirbsd/src/kern/c/
Dashrdi3.c48 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()
Dlshldi3.c49 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()
Dashldi3.c49 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()
Dlshrdi3.c48 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()
Dfloatunsdidf.c48 d = (double)u.ul[H] * (((int)1 << (INT_BITS - 2)) * 4.0); in __floatunsdidf()
Dfloatdisf.c64 f = (double)u.ul[H] * (((int)1 << (INT_BITS - 2)) * 4.0); in __floatdisf()
Dfloatdidf.c62 d = (double)u.ul[H] * (((int)1 << (INT_BITS - 2)) * 4.0); in __floatdidf()
Dfixunsdfdi.c37 #define ONE_FOURTH ((int)1 << (INT_BITS - 2))
Dfixunssfdi.c37 #define ONE_FOURTH ((int)1 << (INT_BITS - 2))
/mirbsd/src/gnu/usr.bin/cvs/lib/
Dquotearg.c78 #define INT_BITS (sizeof (int) * CHAR_BIT) macro
87 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()
/mirbsd/src/kern/include/
Dquad.h83 #define INT_BITS (sizeof(int) * CHAR_BIT) macro