Lines Matching full:high
20 w.s.high = (UWtype)uu.s.low << -bm; in __ashldi3()
25 w.s.high = ((UWtype)uu.s.high << b) | carries; in __ashldi3()
42 /* w.s.high = 1..1 or 0..0 */ in __ashrdi3()
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()
66 w.s.high = 0; in __lshrdi3()
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()