Symbol: LONG_BITS
lib/libc/quad/ashldi3.c
48
if (shift >= LONG_BITS) {
lib/libc/quad/ashldi3.c
50
aa.ul[L] << (shift - LONG_BITS);
lib/libc/quad/ashldi3.c
54
(aa.ul[L] >> (LONG_BITS - shift));
lib/libc/quad/ashrdi3.c
47
if (shift >= LONG_BITS) {
lib/libc/quad/ashrdi3.c
57
s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1;
lib/libc/quad/ashrdi3.c
59
aa.sl[H] >> (shift - LONG_BITS);
lib/libc/quad/ashrdi3.c
63
(aa.ul[H] << (LONG_BITS - shift));
lib/libc/quad/fixunsdfdi.c
38
#define ONE_FOURTH (1L << (LONG_BITS - 2))
lib/libc/quad/fixunssfdi.c
38
#define ONE_FOURTH (1L << (LONG_BITS - 2))
lib/libc/quad/floatdidf.c
63
d = (double)u.ul[H] * ((1L << (LONG_BITS - 2)) * 4.0);
lib/libc/quad/floatdisf.c
65
f = (double)u.ul[H] * ((1L << (LONG_BITS - 2)) * 4.0);
lib/libc/quad/floatunsdidf.c
49
d = (double)u.ul[H] * ((1L << (LONG_BITS - 2)) * 4.0);
lib/libc/quad/lshldi3.c
48
if (shift >= LONG_BITS) {
lib/libc/quad/lshldi3.c
50
aa.ul[L] << (shift - LONG_BITS);
lib/libc/quad/lshldi3.c
54
(aa.ul[L] >> (LONG_BITS - shift));
lib/libc/quad/lshrdi3.c
47
if (shift >= LONG_BITS) {
lib/libc/quad/lshrdi3.c
49
aa.ul[H] >> (shift - LONG_BITS);
lib/libc/quad/lshrdi3.c
53
(aa.ul[H] << (LONG_BITS - shift));
sys/libkern/ashldi3.c
49
if (shift >= LONG_BITS) {
sys/libkern/ashldi3.c
51
aa.ul[L] << (shift - LONG_BITS);
sys/libkern/ashldi3.c
55
(aa.ul[L] >> (LONG_BITS - shift));
sys/libkern/ashrdi3.c
48
if (shift >= LONG_BITS) {
sys/libkern/ashrdi3.c
58
s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1;
sys/libkern/ashrdi3.c
60
aa.sl[H] >> (shift - LONG_BITS);
sys/libkern/ashrdi3.c
64
(aa.ul[H] << (LONG_BITS - shift));
sys/libkern/lshrdi3.c
48
if (shift >= LONG_BITS) {
sys/libkern/lshrdi3.c
50
aa.ul[H] >> (shift - LONG_BITS);
sys/libkern/lshrdi3.c
54
(aa.ul[H] << (LONG_BITS - shift));