Home
last modified time | relevance | path

Searched refs:LONG_BITS (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/fp/
H A Dashrdi3.c47 if (shift >= LONG_BITS) { in ___ashrdi3()
57 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1; in ___ashrdi3()
59 aa.sl[H] >> (shift - LONG_BITS); in ___ashrdi3()
63 (aa.ul[H] << (LONG_BITS - shift)); in ___ashrdi3()
H A Dashldi3.c48 if (shift >= LONG_BITS) { in ___ashldi3()
50 aa.ul[L] << (shift - LONG_BITS); in ___ashldi3()
54 (aa.ul[L] >> (LONG_BITS - shift)); in ___ashldi3()
H A Dlshrdi3.c47 if (shift >= LONG_BITS) { in ___lshrdi3()
49 aa.ul[H] >> (shift - LONG_BITS); in ___lshrdi3()
53 (aa.ul[H] << (LONG_BITS - shift)); in ___lshrdi3()
H A Dquadint.h101 #define LONG_BITS (sizeof (long) * CHAR_BIT) macro