Lines Matching refs:uT

4695   typedef typename std::make_unsigned<T>::type uT;  in MsaBitInstrHelper()  typedef
4705 res = static_cast<T>(static_cast<uT>(ws) >> m); in MsaBitInstrHelper()
4770 res = static_cast<T>(static_cast<uT>(ws) >> m) + in MsaBitInstrHelper()
4888 typedef typename std::make_unsigned<T>::type uT; in Msa3RInstrHelper() typedef
4899 res = static_cast<T>(static_cast<uT>(ws) >> wt_modulo); in Msa3RInstrHelper()
4942 res = static_cast<T>(Max(static_cast<uT>(ws), static_cast<uT>(wt))); in Msa3RInstrHelper()
4948 res = static_cast<T>(Min(static_cast<uT>(ws), static_cast<uT>(wt))); in Msa3RInstrHelper()
4968 (Compare(static_cast<uT>(ws), static_cast<uT>(wt)) == -1) ? -1ull in Msa3RInstrHelper()
4976 (Compare(static_cast<uT>(ws), static_cast<uT>(wt)) != 1) ? -1ull in Msa3RInstrHelper()
4995 uT ws_u = static_cast<uT>(ws); in Msa3RInstrHelper()
4996 uT wt_u = static_cast<uT>(wt); in Msa3RInstrHelper()
5003 uT ws_u = static_cast<uT>(ws); in Msa3RInstrHelper()
5004 uT wt_u = static_cast<uT>(wt); in Msa3RInstrHelper()
5011 uT ws_u = static_cast<uT>(ws); in Msa3RInstrHelper()
5012 uT wt_u = static_cast<uT>(wt); in Msa3RInstrHelper()
5019 uT ws_u = static_cast<uT>(ws); in Msa3RInstrHelper()
5020 uT wt_u = static_cast<uT>(wt); in Msa3RInstrHelper()
5024 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper()
5026 uT wtu = static_cast<uT>(wt); in Msa3RInstrHelper()
5033 if (wsu > std::numeric_limits<uT>::max() + wt) { in Msa3RInstrHelper()
5034 res = static_cast<T>(std::numeric_limits<uT>::max()); in Msa3RInstrHelper()
5041 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper()
5042 uT wtu = static_cast<uT>(wt); in Msa3RInstrHelper()
5043 uT wdu; in Msa3RInstrHelper()
5066 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper()
5067 uT wtu = static_cast<uT>(wt); in Msa3RInstrHelper()
5083 res = wt != 0 ? static_cast<T>(static_cast<uT>(ws) / static_cast<uT>(wt)) in Msa3RInstrHelper()
5090 res = wt != 0 ? static_cast<T>(static_cast<uT>(ws) % static_cast<uT>(wt)) in Msa3RInstrHelper()
5108 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper()