Lines Matching refs:uu
56 const DWunion uu = {.ll = u}; in __ashldi3() local
63 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
67 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
69 w.s.low = (UWtype) uu.s.low << b; in __ashldi3()
70 w.s.high = ((UWtype) uu.s.high << b) | carries; in __ashldi3()
82 const DWunion uu = {.ll = u}; in __ashrdi3() local
89 w.s.high = uu.s.high >> (sizeof (Wtype) * BITS_PER_UNIT - 1); in __ashrdi3()
90 w.s.low = uu.s.high >> -bm; in __ashrdi3()
94 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
96 w.s.high = uu.s.high >> b; in __ashrdi3()
97 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3()
109 const DWunion uu = {.ll = u}; in __lshrdi3() local
116 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3()
120 const UWtype carries = (UWtype) uu.s.high << bm; in __lshrdi3()
122 w.s.high = (UWtype) uu.s.high >> b; in __lshrdi3()
123 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __lshrdi3()
363 DWunion uu = {.ll = u}; in __divdi3() local
367 if (uu.s.high < 0) in __divdi3()
369 uu.ll = -uu.ll; in __divdi3()
374 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0); in __divdi3()
384 const DWunion uu = {.ll = u}; in __negdi2() local
385 const DWunion w = { {.low = -uu.s.low, in __negdi2()
386 .high = -uu.s.high - ((UWtype) -uu.s.low > 0) } }; in __negdi2()
395 const DWunion uu = {.ll = u}; in __muldi3() local
397 DWunion w = {.ll = __umulsidi3 (uu.s.low, vv.s.low)}; in __muldi3()
399 w.s.high += ((UWtype) uu.s.low * (UWtype) vv.s.high in __muldi3()
400 + (UWtype) uu.s.high * (UWtype) vv.s.low); in __muldi3()
409 DWunion uu = {.ll = u}; in __moddi3() local
413 if (uu.s.high < 0) in __moddi3()
415 uu.ll = -uu.ll; in __moddi3()
419 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w); in __moddi3()