Lines Matching +full:5 +full:w
39 0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
58 DWunion w; in __ashldi3() local
62 w.s.low = 0; in __ashldi3()
63 w.s.high = (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()
73 return w.ll; in __ashldi3()
84 DWunion w; in __ashrdi3() local
88 /* w.s.high = 1..1 or 0..0 */ in __ashrdi3()
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()
96 w.s.high = uu.s.high >> b; in __ashrdi3()
97 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3()
100 return w.ll; in __ashrdi3()
111 DWunion w; in __lshrdi3() local
115 w.s.high = 0; in __lshrdi3()
116 w.s.low = (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()
126 return w.ll; in __lshrdi3()
365 DWtype w; in __divdi3() local
374 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0); in __divdi3()
376 w = -w; in __divdi3()
378 return w; in __divdi3()
385 const DWunion w = { {.low = -uu.s.low, in __negdi2() local
388 return w.ll; in __negdi2()
397 DWunion w = {.ll = __umulsidi3 (uu.s.low, vv.s.low)}; in __muldi3() local
399 w.s.high += ((UWtype) uu.s.low * (UWtype) vv.s.high in __muldi3()
402 return w.ll; in __muldi3()
411 DWtype w; in __moddi3() local
419 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w); in __moddi3()
421 w = -w; in __moddi3()
423 return w; in __moddi3()
453 UDWtype w; in __umoddi3() local
454 (void) __udivmoddi4 (u, v, &w); in __umoddi3()
456 return w; in __umoddi3()