Searched refs:INT32_BITS (Results 1 – 2 of 2) sorted by relevance
2588 } else if (ShiftAmount < INT32_BITS) { in lowerInt64Arithmetic()2590 _srl(T1, Src0LoR, INT32_BITS - ShiftAmount); in lowerInt64Arithmetic()2594 } else if (ShiftAmount == INT32_BITS) { in lowerInt64Arithmetic()2597 } else if (ShiftAmount > INT32_BITS && ShiftAmount < 64) { in lowerInt64Arithmetic()2598 _sll(T_Hi, Src0LoR, ShiftAmount - INT32_BITS); in lowerInt64Arithmetic()2619 _andi(T5, Src1LoR, INT32_BITS); in lowerInt64Arithmetic()2641 if (ShiftAmount < INT32_BITS) { in lowerInt64Arithmetic()2643 _sll(T1, Src0HiR, INT32_BITS - ShiftAmount); in lowerInt64Arithmetic()2647 } else if (ShiftAmount == INT32_BITS) { in lowerInt64Arithmetic()2650 } else if (ShiftAmount > INT32_BITS && ShiftAmount < 64) { in lowerInt64Arithmetic()[all …]
855 static constexpr uint32_t INT32_BITS = 32; variable