Home
last modified time | relevance | path

Searched refs:uu (Results 1 – 14 of 14) sorted by relevance

/rk3399_rockchip-uboot/arch/arc/lib/
H A Dlibgcc2.c15 const DWunion uu = {.ll = u}; in __ashldi3() local
21 w.s.high = (UWtype)uu.s.low << -bm; in __ashldi3()
23 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
25 w.s.low = (UWtype)uu.s.low << b; in __ashldi3()
26 w.s.high = ((UWtype)uu.s.high << b) | carries; in __ashldi3()
38 const DWunion uu = {.ll = u}; in __ashrdi3() local
44 w.s.high = uu.s.high >> (W_TYPE_SIZE - 1); in __ashrdi3()
45 w.s.low = uu.s.high >> -bm; in __ashrdi3()
47 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
49 w.s.high = uu.s.high >> b; in __ashrdi3()
[all …]
/rk3399_rockchip-uboot/arch/sh/lib/
H A Dashrdi3.c5 DWunion uu, w; in __ashrdi3() local
11 uu.ll = u; in __ashrdi3()
17 uu.s.high >> 31; in __ashrdi3()
18 w.s.low = uu.s.high >> -bm; in __ashrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
22 w.s.high = uu.s.high >> b; in __ashrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
H A Dashldi3.c5 DWunion uu, w; in __ashldi3() local
11 uu.ll = u; in __ashldi3()
16 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
18 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
20 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
21 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
H A Dlshrdi3.c5 DWunion uu, w; in __lshrdi3() local
11 uu.ll = u; in __lshrdi3()
16 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
18 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
20 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
21 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
/rk3399_rockchip-uboot/arch/mips/lib/
H A Dashrdi3.c5 DWunion uu, w; in __ashrdi3() local
11 uu.ll = u; in __ashrdi3()
17 uu.s.high >> 31; in __ashrdi3()
18 w.s.low = uu.s.high >> -bm; in __ashrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
22 w.s.high = uu.s.high >> b; in __ashrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
H A Dlshrdi3.c5 DWunion uu, w; in __lshrdi3() local
11 uu.ll = u; in __lshrdi3()
16 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
18 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
20 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
21 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
H A Dashldi3.c5 DWunion uu, w; in __ashldi3() local
11 uu.ll = u; in __ashldi3()
16 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
18 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
20 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
21 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
/rk3399_rockchip-uboot/arch/nios2/lib/
H A Dlibgcc.c57 const DWunion uu = {.ll = u}; in __ashldi3() local
64 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
68 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
70 w.s.low = (UWtype) uu.s.low << b; in __ashldi3()
71 w.s.high = ((UWtype) uu.s.high << b) | carries; in __ashldi3()
83 const DWunion uu = {.ll = u}; in __ashrdi3() local
90 w.s.high = uu.s.high >> (sizeof (Wtype) * BITS_PER_UNIT - 1); in __ashrdi3()
91 w.s.low = uu.s.high >> -bm; in __ashrdi3()
95 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
97 w.s.high = uu.s.high >> b; in __ashrdi3()
[all …]
/rk3399_rockchip-uboot/arch/m68k/lib/
H A Dlshrdi3.c29 DIunion uu; in __lshrdi3() local
34 uu.ll = u; in __lshrdi3()
40 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
44 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
45 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3()
46 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
H A Dashldi3.c29 DIunion uu; in __ashldi3() local
34 uu.ll = u; in __ashldi3()
40 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3()
44 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
45 w.s.low = (USItype)uu.s.low << b; in __ashldi3()
46 w.s.high = ((USItype)uu.s.high << b) | carries; in __ashldi3()
H A Dmuldi3.c61 DIunion uu, vv; in __muldi3() local
63 uu.ll = u, in __muldi3()
66 w.ll = __umulsidi3 (uu.s.low, vv.s.low); in __muldi3()
67 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3()
68 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()
/rk3399_rockchip-uboot/arch/microblaze/lib/
H A Dmuldi3.c66 DIunion uu, vv; in __muldi3() local
68 uu.ll = u, vv.ll = v; in __muldi3()
70 w.ll = __umulsidi3(uu.s.low, vv.s.low); in __muldi3()
71 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3()
72 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()
/rk3399_rockchip-uboot/tools/rockchip/
H A Dsha2.h129 } uu[1]; member
H A Dsha2.c681 #define CTX_256(x) ((x)->uu->ctx256)
682 #define CTX_384(x) ((x)->uu->ctx512)
683 #define CTX_512(x) ((x)->uu->ctx512)