Searched refs:LONG_BITS (Results 1 - 15 of 15) sorted by relevance

/freebsd-9.3-release/lib/libc/quad/
H A Dashldi3.c54 if (shift >= LONG_BITS) {
56 aa.ul[L] << (shift - LONG_BITS);
60 (aa.ul[L] >> (LONG_BITS - shift));
H A Dlshldi3.c54 if (shift >= LONG_BITS) {
56 aa.ul[L] << (shift - LONG_BITS);
60 (aa.ul[L] >> (LONG_BITS - shift));
H A Dlshrdi3.c53 if (shift >= LONG_BITS) {
55 aa.ul[H] >> (shift - LONG_BITS);
59 (aa.ul[H] << (LONG_BITS - shift));
H A Dashrdi3.c53 if (shift >= LONG_BITS) {
60 * LONG_BITS is undefined, so we shift (LONG_BITS-1),
63 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1;
65 aa.sl[H] >> (shift - LONG_BITS);
69 (aa.ul[H] << (LONG_BITS - shift));
H A Dfloatunsdidf.c54 d = (double)u.ul[H] * ((1 << (LONG_BITS - 2)) * 4.0);
H A Dfloatdidf.c63 * has the units. Ideally we could just set d, add LONG_BITS to
68 d = (double)u.ul[H] * ((1 << (LONG_BITS - 2)) * 4.0);
H A Dfloatdisf.c63 * has the units. Ideally we could just set f, add LONG_BITS to
70 f = (double)u.ul[H] * ((1 << (LONG_BITS - 2)) * 4.0);
H A Dfixunsdfdi.c42 #define ONE_FOURTH (1 << (LONG_BITS - 2))
H A Dfixunssfdi.c42 #define ONE_FOURTH (1 << (LONG_BITS - 2))
H A Dquad.h79 #define LONG_BITS (sizeof(long) * CHAR_BIT) macro
/freebsd-9.3-release/sys/libkern/
H A Dashldi3.c51 if (shift >= LONG_BITS) {
53 aa.ul[L] << (shift - LONG_BITS);
57 (aa.ul[L] >> (LONG_BITS - shift));
H A Dlshrdi3.c50 if (shift >= LONG_BITS) {
52 aa.ul[H] >> (shift - LONG_BITS);
56 (aa.ul[H] << (LONG_BITS - shift));
H A Dashrdi3.c50 if (shift >= LONG_BITS) {
57 * LONG_BITS is undefined, so we shift (LONG_BITS-1),
60 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1;
62 aa.sl[H] >> (shift - LONG_BITS);
66 (aa.ul[H] << (LONG_BITS - shift));
H A Dquad.h84 #define LONG_BITS (sizeof(long) * CHAR_BIT) macro
/freebsd-9.3-release/lib/libstand/
H A Dquad.h80 #define LONG_BITS (sizeof(long) * CHAR_BIT) macro

Completed in 71 milliseconds