Lines Matching refs:uu
14 const DWunion uu = {.ll = u}; in __ashldi3() local
20 w.s.high = (UWtype)uu.s.low << -bm; in __ashldi3()
22 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
24 w.s.low = (UWtype)uu.s.low << b; in __ashldi3()
25 w.s.high = ((UWtype)uu.s.high << b) | carries; in __ashldi3()
37 const DWunion uu = {.ll = u}; in __ashrdi3() local
43 w.s.high = uu.s.high >> (W_TYPE_SIZE - 1); in __ashrdi3()
44 w.s.low = uu.s.high >> -bm; in __ashrdi3()
46 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
48 w.s.high = uu.s.high >> b; in __ashrdi3()
49 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __ashrdi3()
61 const DWunion uu = {.ll = u}; in __lshrdi3() local
67 w.s.low = (UWtype)uu.s.high >> -bm; in __lshrdi3()
69 const UWtype carries = (UWtype)uu.s.high << bm; in __lshrdi3()
71 w.s.high = (UWtype)uu.s.high >> b; in __lshrdi3()
72 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __lshrdi3()