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