Home
last modified time | relevance | path

Searched refs:__ll_B (Results 1 – 3 of 3) sorted by relevance

/rk3399_rockchip-uboot/arch/m68k/lib/
H A Dmuldi3.c12 #define __ll_B (1L << (SI_TYPE_SIZE / 2)) macro
13 #define __ll_lowpart(t) ((USItype) (t) % __ll_B)
14 #define __ll_highpart(t) ((USItype) (t) / __ll_B)
34 __x3 += __ll_B; /* yes, add it in the proper pos. */ \
37 (w0) = __ll_lowpart (__x1) * __ll_B + __ll_lowpart (__x0); \
/rk3399_rockchip-uboot/arch/microblaze/lib/
H A Dmuldi3.c12 #define __ll_B (1L << (SI_TYPE_SIZE / 2)) macro
13 #define __ll_lowpart(t) ((USItype) (t) % __ll_B)
14 #define __ll_highpart(t) ((USItype) (t) / __ll_B)
36 __x3 += __ll_B; /* yes, add it in the proper pos. */ \
39 (w0) = __ll_lowpart(__x1) * __ll_B + __ll_lowpart(__x0);\
/rk3399_rockchip-uboot/arch/nios2/lib/
H A Dlonglong.h23 #define __ll_B ((UWtype) 1 << (W_TYPE_SIZE / 2)) macro
24 #define __ll_lowpart(t) ((UWtype) (t) & (__ll_B - 1))
144 __x3 += __ll_B; /* yes, add it in the proper pos. */ \
147 (w0) = __ll_lowpart (__x1) * __ll_B + __ll_lowpart (__x0); \
169 __r1 = __r1 * __ll_B | __ll_highpart (n0); \
182 __r0 = __r0 * __ll_B | __ll_lowpart (n0); \
192 (q) = (UWtype) __q1 * __ll_B | __q0; \