Lines Matching refs:uu
57 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()
98 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3()
110 const DWunion uu = {.ll = u}; in __lshrdi3() local
117 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3()
121 const UWtype carries = (UWtype) uu.s.high << bm; in __lshrdi3()
123 w.s.high = (UWtype) uu.s.high >> b; in __lshrdi3()
124 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __lshrdi3()
364 DWunion uu = {.ll = u}; in __divdi3() local
368 if (uu.s.high < 0) in __divdi3()
370 uu.ll = -uu.ll; in __divdi3()
375 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0); in __divdi3()
385 const DWunion uu = {.ll = u}; in __negdi2() local
386 const DWunion w = { {.low = -uu.s.low, in __negdi2()
387 .high = -uu.s.high - ((UWtype) -uu.s.low > 0) } }; in __negdi2()
396 const DWunion uu = {.ll = u}; in __muldi3() local
398 DWunion w = {.ll = __umulsidi3 (uu.s.low, vv.s.low)}; in __muldi3()
400 w.s.high += ((UWtype) uu.s.low * (UWtype) vv.s.high in __muldi3()
401 + (UWtype) uu.s.high * (UWtype) vv.s.low); in __muldi3()
410 DWunion uu = {.ll = u}; in __moddi3() local
414 if (uu.s.high < 0) in __moddi3()
416 uu.ll = -uu.ll; in __moddi3()
420 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w); in __moddi3()