Lines Matching refs:w

59   DWunion w;  in __ashldi3()  local
63 w.s.low = 0; in __ashldi3()
64 w.s.high = (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()
74 return w.ll; in __ashldi3()
85 DWunion w; 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()
97 w.s.high = uu.s.high >> b; in __ashrdi3()
98 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3()
101 return w.ll; in __ashrdi3()
112 DWunion w; in __lshrdi3() local
116 w.s.high = 0; in __lshrdi3()
117 w.s.low = (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()
127 return w.ll; in __lshrdi3()
366 DWtype w; in __divdi3() local
375 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0); in __divdi3()
377 w = -w; in __divdi3()
379 return w; in __divdi3()
386 const DWunion w = { {.low = -uu.s.low, in __negdi2() local
389 return w.ll; in __negdi2()
398 DWunion w = {.ll = __umulsidi3 (uu.s.low, vv.s.low)}; in __muldi3() local
400 w.s.high += ((UWtype) uu.s.low * (UWtype) vv.s.high in __muldi3()
403 return w.ll; in __muldi3()
412 DWtype w; in __moddi3() local
420 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w); in __moddi3()
422 w = -w; in __moddi3()
424 return w; in __moddi3()
454 UDWtype w; in __umoddi3() local
455 (void) __udivmoddi4 (u, v, &w); in __umoddi3()
457 return w; in __umoddi3()