Lines Matching refs:bm
16 const shift_count_type bm = W_TYPE_SIZE - b; in __ashldi3() local
19 if (bm <= 0) { in __ashldi3()
21 w.s.high = (UWtype)uu.s.low << -bm; in __ashldi3()
23 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
39 const shift_count_type bm = W_TYPE_SIZE - b; in __ashrdi3() local
42 if (bm <= 0) { in __ashrdi3()
45 w.s.low = uu.s.high >> -bm; in __ashrdi3()
47 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
63 const shift_count_type bm = W_TYPE_SIZE - b; in __lshrdi3() local
66 if (bm <= 0) { in __lshrdi3()
68 w.s.low = (UWtype)uu.s.high >> -bm; in __lshrdi3()
70 const UWtype carries = (UWtype)uu.s.high << bm; in __lshrdi3()