Lines Matching refs:b
10 __ashldi3(DWtype u, shift_count_type b) in __ashldi3() argument
12 if (b == 0) in __ashldi3()
16 const shift_count_type bm = W_TYPE_SIZE - b; in __ashldi3()
25 w.s.low = (UWtype)uu.s.low << b; in __ashldi3()
26 w.s.high = ((UWtype)uu.s.high << b) | carries; in __ashldi3()
33 __ashrdi3(DWtype u, shift_count_type b) in __ashrdi3() argument
35 if (b == 0) in __ashrdi3()
39 const shift_count_type bm = W_TYPE_SIZE - b; in __ashrdi3()
49 w.s.high = uu.s.high >> b; in __ashrdi3()
50 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __ashrdi3()
57 __lshrdi3(DWtype u, shift_count_type b) in __lshrdi3() argument
59 if (b == 0) in __lshrdi3()
63 const shift_count_type bm = W_TYPE_SIZE - b; in __lshrdi3()
72 w.s.high = (UWtype)uu.s.high >> b; in __lshrdi3()
73 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __lshrdi3()
106 __divsi3(long a, long b) in __divsi3() argument
116 if (b < 0) { in __divsi3()
117 b = -b; in __divsi3()
121 res = udivmodsi4(a, b, 0); in __divsi3()
130 __modsi3(long a, long b) in __modsi3() argument
140 if (b < 0) in __modsi3()
141 b = -b; in __modsi3()
143 res = udivmodsi4(a, b, 1); in __modsi3()
152 __udivsi3(long a, long b) in __udivsi3() argument
154 return udivmodsi4(a, b, 0); in __udivsi3()
158 __umodsi3(long a, long b) in __umodsi3() argument
160 return udivmodsi4(a, b, 1); in __umodsi3()