Lines Matching refs:uu
15 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()
50 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __ashrdi3()
62 const DWunion uu = {.ll = u}; in __lshrdi3() local
68 w.s.low = (UWtype)uu.s.high >> -bm; in __lshrdi3()
70 const UWtype carries = (UWtype)uu.s.high << bm; in __lshrdi3()
72 w.s.high = (UWtype)uu.s.high >> b; in __lshrdi3()
73 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __lshrdi3()