Home
last modified time | relevance | path

Searched refs:unsignedT (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/arm64/
Dsimulator-arm64.cc945 typedef typename make_unsigned<T>::type unsignedT; in ShiftOperand() typedef
955 return static_cast<unsignedT>(value) >> amount; in ShiftOperand()
959 unsignedT mask = (static_cast<unsignedT>(1) << amount) - 1; in ShiftOperand()
960 return (static_cast<unsignedT>(value) >> amount) | in ShiftOperand()
2066 typedef typename make_unsigned<T>::type unsignedT; in DataProcessing2Source() typedef
2067 unsignedT rn = static_cast<unsignedT>(reg<T>(instr->Rn())); in DataProcessing2Source()
2068 unsignedT rm = static_cast<unsignedT>(reg<T>(instr->Rm())); in DataProcessing2Source()
2171 typedef typename make_unsigned<T>::type unsignedT; in BitfieldHelper() typedef
2212 T result = (static_cast<unsignedT>(src) >> R) | (src << (reg_size - R)); in BitfieldHelper()