Lines Matching refs:unsignedT
841 typedef typename make_unsigned<T>::type unsignedT; in AddWithCarry() typedef
850 unsignedT u1 = static_cast<unsignedT>(src1); in AddWithCarry()
851 unsignedT u2 = static_cast<unsignedT>(src2); in AddWithCarry()
852 unsignedT urest = std::numeric_limits<unsignedT>::max() - u1; in AddWithCarry()
892 typedef typename make_unsigned<T>::type unsignedT; in ShiftOperand() typedef
902 return static_cast<unsignedT>(value) >> amount; in ShiftOperand()
906 return (static_cast<unsignedT>(value) >> amount) | in ShiftOperand()
908 (sizeof(unsignedT) * 8 - amount)); in ShiftOperand()
2025 typedef typename make_unsigned<T>::type unsignedT; in DataProcessing2Source() typedef
2026 unsignedT rn = static_cast<unsignedT>(reg<T>(instr->Rn())); in DataProcessing2Source()
2027 unsignedT rm = static_cast<unsignedT>(reg<T>(instr->Rm())); in DataProcessing2Source()
2130 typedef typename make_unsigned<T>::type unsignedT; in BitfieldHelper() typedef
2170 T result = (static_cast<unsignedT>(src) >> R) | (src << (reg_size - R)); in BitfieldHelper()