Lines Matching refs:b
52 __ashldi3 (DWtype u, word_type b) in __ashldi3() argument
54 if (b == 0) in __ashldi3()
58 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; 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()
78 __ashrdi3 (DWtype u, word_type b) in __ashrdi3() argument
80 if (b == 0) in __ashrdi3()
84 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __ashrdi3()
97 w.s.high = uu.s.high >> b; in __ashrdi3()
98 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3()
105 __lshrdi3 (DWtype u, word_type b) in __lshrdi3() argument
107 if (b == 0) in __lshrdi3()
111 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; 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()
131 __cmpdi2 (DWtype a, DWtype b) in __cmpdi2() argument
134 const DWunion bu = {.ll = b}; in __cmpdi2()
155 UWtype b, bm; in __udivmoddi4() local
245 b = W_TYPE_SIZE - bm; in __udivmoddi4()
248 n2 = n1 >> b; in __udivmoddi4()
249 n1 = (n1 << bm) | (n0 >> b); in __udivmoddi4()
325 b = W_TYPE_SIZE - bm; in __udivmoddi4()
327 d1 = (d1 << bm) | (d0 >> b); in __udivmoddi4()
329 n2 = n1 >> b; in __udivmoddi4()
330 n1 = (n1 << bm) | (n0 >> b); in __udivmoddi4()
348 rr.s.low = (n1 << b) | (n0 >> bm); in __udivmoddi4()
428 __ucmpdi2 (DWtype a, DWtype b) in __ucmpdi2() argument
431 const DWunion bu = {.ll = b}; in __ucmpdi2()
486 __divsi3 (SItype a, SItype b) in __divsi3() argument
497 if (b < 0) in __divsi3()
499 b = -b; in __divsi3()
503 res = udivmodsi4 (a, b, 0); in __divsi3()
513 __udivsi3 (SItype a, SItype b) in __udivsi3() argument
515 return udivmodsi4 (a, b, 0); in __udivsi3()
520 __modsi3 (SItype a, SItype b) in __modsi3() argument
531 if (b < 0) in __modsi3()
532 b = -b; in __modsi3()
534 res = udivmodsi4 (a, b, 1); in __modsi3()
543 __mulsi3 (SItype a, SItype b) in __mulsi3() argument
552 res += b; in __mulsi3()
554 b <<= 1; in __mulsi3()
562 __umodsi3 (SItype a, SItype b) in __umodsi3() argument
565 return udivmodsi4 (a, b, 1); in __umodsi3()