Lines Matching refs:wsu
5249 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper() local
5252 if (wtu > wsu) { in Msa3RInstrHelper()
5255 res = static_cast<T>(wsu - wtu); in Msa3RInstrHelper()
5258 if (wsu > std::numeric_limits<uT>::max() + wt) { in Msa3RInstrHelper()
5261 res = static_cast<T>(wsu - wt); in Msa3RInstrHelper()
5266 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper() local
5269 if (wsu > wtu) { in Msa3RInstrHelper()
5270 wdu = wsu - wtu; in Msa3RInstrHelper()
5277 wdu = wtu - wsu; in Msa3RInstrHelper()
5291 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper() local
5293 res = static_cast<T>(wsu > wtu ? wsu - wtu : wtu - wsu); in Msa3RInstrHelper()
5333 uT wsu = static_cast<uT>(ws); in Msa3RInstrHelper() local
5334 int bit = wt_modulo == 0 ? 0 : (wsu >> (wt_modulo - 1)) & 1; in Msa3RInstrHelper()
5335 res = static_cast<T>((wsu >> wt_modulo) + bit); in Msa3RInstrHelper()