Lines Matching refs:s

28   struct DWstruct s;  member
62 w.s.low = 0; in __ashldi3()
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()
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()
115 w.s.high = 0; in __lshrdi3()
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()
135 if (au.s.high < bu.s.high) in __cmpdi2()
137 else if (au.s.high > bu.s.high) in __cmpdi2()
139 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __cmpdi2()
141 else if ((UWtype) au.s.low > (UWtype) bu.s.low) in __cmpdi2()
156 d0 = dd.s.low; in __udivmoddi4()
157 d1 = dd.s.high; in __udivmoddi4()
158 n0 = nn.s.low; in __udivmoddi4()
159 n1 = nn.s.high; in __udivmoddi4()
188 rr.s.low = n0; in __udivmoddi4()
189 rr.s.high = 0; in __udivmoddi4()
263 rr.s.low = n0 >> bm; in __udivmoddi4()
264 rr.s.high = 0; in __udivmoddi4()
282 rr.s.low = n0; in __udivmoddi4()
283 rr.s.high = n1; in __udivmoddi4()
314 rr.s.low = n0; in __udivmoddi4()
315 rr.s.high = n1; in __udivmoddi4()
347 rr.s.low = (n1 << b) | (n0 >> bm); in __udivmoddi4()
348 rr.s.high = n1 >> bm; in __udivmoddi4()
367 if (uu.s.high < 0) in __divdi3()
370 if (vv.s.high < 0) in __divdi3()
385 const DWunion w = { {.low = -uu.s.low, in __negdi2()
386 .high = -uu.s.high - ((UWtype) -uu.s.low > 0) } }; in __negdi2()
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()
413 if (uu.s.high < 0) in __moddi3()
416 if (vv.s.high < 0) in __moddi3()
432 if ((UWtype) au.s.high < (UWtype) bu.s.high) in __ucmpdi2()
434 else if ((UWtype) au.s.high > (UWtype) bu.s.high) in __ucmpdi2()
436 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __ucmpdi2()
438 else if ((UWtype) au.s.low > (UWtype) bu.s.low) in __ucmpdi2()