Lines Matching +full:8 +full:-
4 * SPDX-License-Identifier: GPL-2.0+
33 #define BITS_PER_UNIT 8
44 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
45 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
46 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
47 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8
58 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __ashldi3()
64 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
84 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __ashrdi3()
90 w.s.high = uu.s.high >> (sizeof (Wtype) * BITS_PER_UNIT - 1); in __ashrdi3()
91 w.s.low = uu.s.high >> -bm; in __ashrdi3()
111 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __lshrdi3()
117 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3()
211 n1 = (n1 << bm) | (n0 >> (W_TYPE_SIZE - bm)); in __udivmoddi4()
238 n1 -= d0; in __udivmoddi4()
245 b = W_TYPE_SIZE - bm; in __udivmoddi4()
325 b = W_TYPE_SIZE - bm; in __udivmoddi4()
338 q0--; in __udivmoddi4()
344 /* Remainder in (n1n0 - m1m0) >> bm. */ in __udivmoddi4()
370 uu.ll = -uu.ll; in __divdi3()
373 vv.ll = -vv.ll; in __divdi3()
377 w = -w; in __divdi3()
386 const DWunion w = { {.low = -uu.s.low, in __negdi2()
387 .high = -uu.s.high - ((UWtype) -uu.s.low > 0) } }; in __negdi2()
416 uu.ll = -uu.ll; in __moddi3()
418 vv.ll = -vv.ll; in __moddi3()
422 w = -w; in __moddi3()
475 num -= den; in udivmodsi4()
493 a = -a; in __divsi3()
499 b = -b; in __divsi3()
506 res = -res; in __divsi3()
527 a = -a; in __modsi3()
532 b = -b; in __modsi3()
537 res = -res; in __modsi3()
575 return c1 - c2; in __gcc_bcmp()
576 size--; in __gcc_bcmp()