Lines Matching refs:unsignedT
863 typedef typename make_unsigned<T>::type unsignedT; in AddWithCarry() typedef
872 unsignedT u1 = static_cast<unsignedT>(src1); in AddWithCarry()
873 unsignedT u2 = static_cast<unsignedT>(src2); in AddWithCarry()
874 unsignedT urest = std::numeric_limits<unsignedT>::max() - u1; in AddWithCarry()
914 typedef typename make_unsigned<T>::type unsignedT; in ShiftOperand() typedef
924 return static_cast<unsignedT>(value) >> amount; in ShiftOperand()
928 unsignedT mask = (static_cast<unsignedT>(1) << amount) - 1; in ShiftOperand()
929 return (static_cast<unsignedT>(value) >> amount) | in ShiftOperand()
2027 typedef typename make_unsigned<T>::type unsignedT; in DataProcessing2Source() typedef
2028 unsignedT rn = static_cast<unsignedT>(reg<T>(instr->Rn())); in DataProcessing2Source()
2029 unsignedT rm = static_cast<unsignedT>(reg<T>(instr->Rm())); in DataProcessing2Source()
2132 typedef typename make_unsigned<T>::type unsignedT; in BitfieldHelper() typedef
2173 T result = (static_cast<unsignedT>(src) >> R) | (src << (reg_size - R)); in BitfieldHelper()