Lines Matching refs:wsu
5024 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper() local
5027 if (wtu > wsu) { in Msa3RInstrHelper()
5030 res = static_cast<T>(wsu - wtu); in Msa3RInstrHelper()
5033 if (wsu > std::numeric_limits<uT>::max() + wt) { in Msa3RInstrHelper()
5036 res = static_cast<T>(wsu - wt); in Msa3RInstrHelper()
5041 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper() local
5044 if (wsu > wtu) { in Msa3RInstrHelper()
5045 wdu = wsu - wtu; in Msa3RInstrHelper()
5052 wdu = wtu - wsu; in Msa3RInstrHelper()
5066 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper() local
5068 res = static_cast<T>(wsu > wtu ? wsu - wtu : wtu - wsu); in Msa3RInstrHelper()
5108 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper() local
5109 int bit = wt_modulo == 0 ? 0 : (wsu >> (wt_modulo - 1)) & 1; in Msa3RInstrHelper()
5110 res = static_cast<T>((wsu >> wt_modulo) + bit); in Msa3RInstrHelper()