Home
last modified time | relevance | path

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

/f-stack/freebsd/libkern/
H A Dashrdi3.c50 if (shift >= LONG_BITS) { in __ashrdi3()
60 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1; in __ashrdi3()
62 aa.sl[H] >> (shift - LONG_BITS); in __ashrdi3()
66 (aa.ul[H] << (LONG_BITS - shift)); in __ashrdi3()
H A Dlshrdi3.c50 if (shift >= LONG_BITS) { in __lshrdi3()
52 aa.ul[H] >> (shift - LONG_BITS); in __lshrdi3()
56 (aa.ul[H] << (LONG_BITS - shift)); in __lshrdi3()
H A Dashldi3.c53 if (shift >= LONG_BITS) {
55 aa.ul[L] << (shift - LONG_BITS);
59 (aa.ul[L] >> (LONG_BITS - shift));
H A Dquad.h86 #define LONG_BITS (sizeof(long) * CHAR_BIT) macro