Searched refs:UWtype (Results 1 – 14 of 14) sorted by relevance
/linux-4.4.14/arch/h8300/lib/ |
D | muldi3.c | 3 #define __ll_B ((UWtype) 1 << (W_TYPE_SIZE / 2)) 4 #define __ll_lowpart(t) ((UWtype) (t) & (__ll_B - 1)) 5 #define __ll_highpart(t) ((UWtype) (t) >> (W_TYPE_SIZE / 2)) 9 UWtype __x0, __x1, __x2, __x3; \ 15 __x0 = (UWtype) __ul * __vl; \ 16 __x1 = (UWtype) __ul * __vh; \ 17 __x2 = (UWtype) __uh * __vl; \ 18 __x3 = (UWtype) __uh * __vh; \ 40 w.s.high += ((UWtype) uu.s.low * (UWtype) vv.s.high in __muldi3() 41 + (UWtype) uu.s.high * (UWtype) vv.s.low); in __muldi3()
|
D | ucmpdi2.c | 8 if ((UWtype) au.s.high < (UWtype) bu.s.high) in __ucmpdi2() 10 else if ((UWtype) au.s.high > (UWtype) bu.s.high) in __ucmpdi2() 12 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __ucmpdi2() 14 else if ((UWtype) au.s.low > (UWtype) bu.s.low) in __ucmpdi2()
|
D | ashldi3.c | 15 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3() 17 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3() 19 w.s.low = (UWtype) uu.s.low << b; in __ashldi3() 20 w.s.high = ((UWtype) uu.s.high << b) | carries; in __ashldi3()
|
D | lshrdi3.c | 14 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3() 16 const UWtype carries = (UWtype) uu.s.high << bm; in __lshrdi3() 18 w.s.high = (UWtype) uu.s.high >> b; in __lshrdi3() 19 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __lshrdi3()
|
D | ashrdi3.c | 17 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3() 20 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3()
|
D | libgcc.h | 50 #define UWtype USItype macro 55 #define UWtype USItype macro 57 #define UWtype USItype macro
|
/linux-4.4.14/arch/sh/math-emu/ |
D | sfp-util.h | 7 UWtype __x; \ 15 UWtype __x; \ 27 #define __ll_B ((UWtype) 1 << (W_TYPE_SIZE / 2)) 28 #define __ll_lowpart(t) ((UWtype) (t) & (__ll_B - 1)) 29 #define __ll_highpart(t) ((UWtype) (t) >> (W_TYPE_SIZE / 2)) 33 UWtype __d1, __d0, __q1, __q0; \ 34 UWtype __r1, __r0, __m; \ 40 __m = (UWtype) __q1 * __d0; \ 53 __m = (UWtype) __q0 * __d0; \ 64 (q) = (UWtype) __q1 * __ll_B | __q0; \
|
/linux-4.4.14/arch/sparc/math-emu/ |
D | sfp-util_64.h | 77 UWtype __d1, __d0, __q1, __q0, __r1, __r0, __m; \ 83 __m = (UWtype) __q1 * __d0; \ 96 __m = (UWtype) __q0 * __d0; \ 107 (q) = (UWtype) (__q1 << 32) | __q0; \
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | sfp-machine.h | 36 #define __ll_B ((UWtype) 1 << (W_TYPE_SIZE / 2)) 37 #define __ll_lowpart(t) ((UWtype) (t) & (__ll_B - 1)) 38 #define __ll_highpart(t) ((UWtype) (t) >> (W_TYPE_SIZE / 2)) 317 UWtype __d1, __d0, __q1, __q0, __r1, __r0, __m; \ 323 __m = (UWtype) __q1 * __d0; \ 336 __m = (UWtype) __q0 * __d0; \ 347 (q) = (UWtype) __q1 * __ll_B | __q0; \
|
/linux-4.4.14/lib/mpi/ |
D | longlong.h | 39 #define __ll_B ((UWtype) 1 << (W_TYPE_SIZE / 2)) 40 #define __ll_lowpart(t) ((UWtype) (t) & (__ll_B - 1)) 41 #define __ll_highpart(t) ((UWtype) (t) >> (W_TYPE_SIZE / 2)) 1253 ph = (UWtype) (__ll >> W_TYPE_SIZE); \ 1254 pl = (UWtype) __ll; \ 1260 ({UWtype __hi, __lo; \ 1270 UWtype __x; \ 1280 UWtype __x; \ 1290 UWtype __x0, __x1, __x2, __x3; \ 1292 UWtype __u = (u), __v = (v); \ [all …]
|
D | mpi-internal.h | 239 typedef mpi_limb_t UWtype; typedef
|
/linux-4.4.14/include/math-emu/ |
D | soft-fp.h | 190 #define UWtype _FP_W_TYPE macro
|
D | op-4.h | 343 UWtype _t; \ 582 UWtype _t0, _t1, _t2; \ 591 UWtype _t0, _t1, _t2, _t3; \ 600 UWtype _t; \
|
D | op-2.h | 162 UWtype _t = xl; \
|