Lines Matching +full:7 +full:b

41   7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
42 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
51 __ashldi3 (DWtype u, word_type b) in __ashldi3() argument
53 if (b == 0) in __ashldi3()
57 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; 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()
77 __ashrdi3 (DWtype u, word_type b) in __ashrdi3() argument
79 if (b == 0) in __ashrdi3()
83 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __ashrdi3()
96 w.s.high = uu.s.high >> b; in __ashrdi3()
97 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3()
104 __lshrdi3 (DWtype u, word_type b) in __lshrdi3() argument
106 if (b == 0) in __lshrdi3()
110 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; 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()
130 __cmpdi2 (DWtype a, DWtype b) in __cmpdi2() argument
133 const DWunion bu = {.ll = b}; in __cmpdi2()
154 UWtype b, bm; in __udivmoddi4() local
244 b = W_TYPE_SIZE - bm; in __udivmoddi4()
247 n2 = n1 >> b; in __udivmoddi4()
248 n1 = (n1 << bm) | (n0 >> b); in __udivmoddi4()
324 b = W_TYPE_SIZE - bm; in __udivmoddi4()
326 d1 = (d1 << bm) | (d0 >> b); in __udivmoddi4()
328 n2 = n1 >> b; in __udivmoddi4()
329 n1 = (n1 << bm) | (n0 >> b); in __udivmoddi4()
347 rr.s.low = (n1 << b) | (n0 >> bm); in __udivmoddi4()
427 __ucmpdi2 (DWtype a, DWtype b) in __ucmpdi2() argument
430 const DWunion bu = {.ll = b}; in __ucmpdi2()
485 __divsi3 (SItype a, SItype b) in __divsi3() argument
496 if (b < 0) in __divsi3()
498 b = -b; in __divsi3()
502 res = udivmodsi4 (a, b, 0); in __divsi3()
512 __udivsi3 (SItype a, SItype b) in __udivsi3() argument
514 return udivmodsi4 (a, b, 0); in __udivsi3()
519 __modsi3 (SItype a, SItype b) in __modsi3() argument
530 if (b < 0) in __modsi3()
531 b = -b; in __modsi3()
533 res = udivmodsi4 (a, b, 1); in __modsi3()
542 __mulsi3 (SItype a, SItype b) in __mulsi3() argument
551 res += b; in __mulsi3()
553 b <<= 1; in __mulsi3()
561 __umodsi3 (SItype a, SItype b) in __umodsi3() argument
564 return udivmodsi4 (a, b, 1); in __umodsi3()