Searched refs:USItype (Results 1 – 7 of 7) sorted by relevance
/external/u-boot/arch/microblaze/lib/ |
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 …]
|
/external/u-boot/arch/m68k/lib/ |
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 …]
|
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()
|
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()
|
/external/u-boot/arch/arc/lib/ |
D | libgcc2.h | 39 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef 70 #define UWtype USItype 72 #define UHWtype USItype 89 #define UDWtype USItype
|
/external/u-boot/arch/nios2/lib/ |
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()
|
D | longlong.h | 28 #define UWtype USItype 29 #define UHWtype USItype 200 USItype __r; \
|