/openbmc/linux/lib/crypto/mpi/ |
H A D | longlong.h | 122 "rI" ((USItype)(bl))) 150 "r" ((USItype)(d))) 212 "r" ((USItype)(b)) \ 221 "r" ((USItype)(b)) \ 293 "g" ((USItype)(d))) 340 do { USItype __r; \ 581 : "=&d" ((USItype)(xh)), "=&d" ((USItype)(xl)), \ 583 : "%2" ((USItype)(a)), "d" ((USItype)(b))); \ 980 "r" ((USItype)(v))) 985 USItype __q; \ [all …]
|
H A D | mpi-internal.h | 219 typedef unsigned int USItype __attribute__ ((mode(SI))); typedef 225 typedef unsigned long USItype; typedef
|
/openbmc/linux/arch/sparc/include/asm/ |
H A D | sfp-machine_32.h | 86 "rI" ((USItype)(y2)), \ 88 "rI" ((USItype)(y1)), \ 90 "rI" ((USItype)(y0)) \ 101 "rI" ((USItype)(y2)), \ 103 "rI" ((USItype)(y1)), \ 105 "rI" ((USItype)(y0)) \ 127 "rI" ((USItype)(y0)) \ 152 "rI" ((USItype)(y0)) \ 171 : "rI" ((USItype)(i)), \ 172 "0" ((USItype)(x3)), \ [all …]
|
/openbmc/linux/arch/sparc/math-emu/ |
H A D | sfp-util_32.h | 12 : "%rJ" ((USItype)(ah)), \ 13 "rI" ((USItype)(bh)), \ 14 "%rJ" ((USItype)(al)), \ 15 "rI" ((USItype)(bl)) \ 22 : "rJ" ((USItype)(ah)), \ 23 "rI" ((USItype)(bh)), \ 24 "rJ" ((USItype)(al)), \ 25 "rI" ((USItype)(bl)) \ 72 "r" ((USItype)(v)) \ 104 : "r" ((USItype)(d)), \ [all …]
|
H A D | sfp-util_64.h | 80 __d0 = (USItype)d; \ 98 __r0 = (__r0 << 32) | ((USItype)n0); \
|
/openbmc/linux/arch/m68k/lib/ |
H A D | muldi3.c | 30 USItype __x0, __x1, __x2, __x3; \ 31 USItype __ul, __vl, __uh, __vh; \ 38 __x0 = (USItype) __ul * __vl; \ 39 __x1 = (USItype) __ul * __vh; \ 40 __x2 = (USItype) __uh * __vl; \ 41 __x3 = (USItype) __uh * __vh; \ 57 "=d" ((USItype)(w1)) \ 58 : "%0" ((USItype)(u)), \ 59 "dmi" ((USItype)(v))) 91 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3() [all …]
|
H A D | lshrdi3.c | 22 typedef unsigned int USItype __mode(SI); 50 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3() 54 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3() 55 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3() 56 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
|
H A D | ashldi3.c | 22 typedef unsigned int USItype __mode(SI); 50 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3() 54 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3() 55 w.s.low = (USItype)uu.s.low << b; in __ashldi3() 56 w.s.high = ((USItype)uu.s.high << b) | carries; in __ashldi3()
|
H A D | ashrdi3.c | 22 typedef unsigned int USItype __mode(SI); 55 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3() 57 w.s.low = ((USItype)uu.s.low >> b) | carries; in __ashrdi3()
|
/openbmc/u-boot/arch/m68k/lib/ |
H A D | muldi3.c | 12 #define __ll_lowpart(t) ((USItype) (t) % __ll_B) 13 #define __ll_highpart(t) ((USItype) (t) / __ll_B) 17 USItype __x0, __x1, __x2, __x3; \ 18 USItype __ul, __vl, __uh, __vh; \ 25 __x0 = (USItype) __ul * __vl; \ 26 __x1 = (USItype) __ul * __vh; \ 27 __x2 = (USItype) __uh * __vl; \ 28 __x3 = (USItype) __uh * __vh; \ 45 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef 66 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3() [all …]
|
H A D | lshrdi3.c | 12 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef 39 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3() 43 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3() 44 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3() 45 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
|
H A D | ashldi3.c | 12 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef 39 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3() 43 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3() 44 w.s.low = (USItype)uu.s.low << b; in __ashldi3() 45 w.s.high = ((USItype)uu.s.high << b) | carries; in __ashldi3()
|
/openbmc/u-boot/arch/microblaze/lib/ |
H A D | muldi3.c | 12 #define __ll_lowpart(t) ((USItype) (t) % __ll_B) 13 #define __ll_highpart(t) ((USItype) (t) / __ll_B) 19 USItype __x0, __x1, __x2, __x3; \ 20 USItype __ul, __vl, __uh, __vh; \ 27 __x0 = (USItype) __ul * __vl; \ 28 __x1 = (USItype) __ul * __vh; \ 29 __x2 = (USItype) __uh * __vl; \ 30 __x3 = (USItype) __uh * __vh; \ 49 typedef unsigned int USItype __attribute__ ((mode(SI))); typedef 70 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3() [all …]
|
/openbmc/u-boot/arch/arc/lib/ |
H A D | libgcc2.h | 39 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef 70 #define UWtype USItype 72 #define UHWtype USItype 89 #define UDWtype USItype
|
/openbmc/u-boot/arch/nios2/lib/ |
H A D | libgcc.c | 13 typedef unsigned long USItype; typedef 459 static USItype 460 udivmodsi4(USItype num, USItype den, word_type modwanted) in udivmodsi4() 462 USItype bit = 1; in udivmodsi4() 463 USItype res = 0; in udivmodsi4() 545 USItype cnt = a; in __mulsi3()
|
H A D | longlong.h | 28 #define UWtype USItype 29 #define UHWtype USItype 200 USItype __r; \
|
/openbmc/linux/arch/powerpc/include/asm/ |
H A D | sfp-machine.h | 221 else if (__builtin_constant_p (bh) && (bh) == ~(USItype) 0) \ 244 else if (__builtin_constant_p (ah) && (ah) == ~(USItype) 0) \ 250 else if (__builtin_constant_p (bh) && (bh) == ~(USItype) 0) \ 267 USItype __m0 = (m0), __m1 = (m1); \
|
/openbmc/linux/include/math-emu/ |
H A D | soft-fp.h | 195 typedef unsigned int USItype __attribute__((mode(SI))); typedef 200 typedef USItype UHWtype;
|