INT_BITS           52 lib/libkern/ashldi3.c 	if (shift >= INT_BITS) {
INT_BITS           53 lib/libkern/ashldi3.c 		aa.ul[H] = aa.ul[L] << (shift - INT_BITS);
INT_BITS           57 lib/libkern/ashldi3.c 		    (aa.ul[L] >> (INT_BITS - shift));
INT_BITS           51 lib/libkern/ashrdi3.c 	if (shift >= INT_BITS) {
INT_BITS           62 lib/libkern/ashrdi3.c 		s = (aa.sl[H] >> (INT_BITS - 1)) >> 1;
INT_BITS           64 lib/libkern/ashrdi3.c 		aa.ul[L] = aa.sl[H] >> (shift - INT_BITS);
INT_BITS           68 lib/libkern/ashrdi3.c 		    (aa.ul[H] << (INT_BITS - shift));
INT_BITS           52 lib/libkern/lshldi3.c 	if (shift >= INT_BITS) {
INT_BITS           53 lib/libkern/lshldi3.c 		aa.ul[H] = aa.ul[L] << (shift - INT_BITS);
INT_BITS           57 lib/libkern/lshldi3.c 		    (aa.ul[L] >> (INT_BITS - shift));
INT_BITS           51 lib/libkern/lshrdi3.c 	if (shift >= INT_BITS) {
INT_BITS           52 lib/libkern/lshrdi3.c 		aa.ul[L] = aa.ul[H] >> (shift - INT_BITS);
INT_BITS           56 lib/libkern/lshrdi3.c 		    (aa.ul[H] << (INT_BITS - shift));