Searched refs:unsignedT (Results 1 – 2 of 2) sorted by relevance
203 typedef typename std::make_unsigned<T>::type unsignedT; in Abs() typedef204 unsignedT x = static_cast<unsignedT>(a); in Abs()205 unsignedT y = static_cast<unsignedT>(a >> (sizeof(T) * 8 - 1)); in Abs()
832 typedef typename std::make_unsigned<T>::type unsignedT; in ShiftOperand() typedef842 return static_cast<unsignedT>(value) >> amount; in ShiftOperand()846 unsignedT mask = (static_cast<unsignedT>(1) << amount) - 1; in ShiftOperand()847 return (static_cast<unsignedT>(value) >> amount) | in ShiftOperand()2346 typedef typename std::make_unsigned<T>::type unsignedT; in DataProcessing2Source() typedef2347 unsignedT rn = static_cast<unsignedT>(reg<T>(instr->Rn())); in DataProcessing2Source()2348 unsignedT rm = static_cast<unsignedT>(reg<T>(instr->Rm())); in DataProcessing2Source()2451 typedef typename std::make_unsigned<T>::type unsignedT; in BitfieldHelper() typedef2492 T result = (static_cast<unsignedT>(src) >> R) | (src << (reg_size - R)); in BitfieldHelper()