Lines Matching refs:dstform
1899 LogicVRegister Simulator::extractnarrow(VectorFormat dstform, in extractnarrow() argument
1909 switch (dstform) { in extractnarrow()
1957 offset = LaneCountFromFormat(dstform) / 2; in extractnarrow()
1960 dst.ClearForWrite(dstform); in extractnarrow()
1965 if (ssrc[i] > MaxIntFromFormat(dstform)) { in extractnarrow()
1967 } else if (ssrc[i] < MinIntFromFormat(dstform)) { in extractnarrow()
1973 if (ssrc[i] > static_cast<int64_t>(MaxUintFromFormat(dstform))) { in extractnarrow()
1979 if (usrc[i] > MaxUintFromFormat(dstform)) { in extractnarrow()
1986 result = ssrc[i] & MaxUintFromFormat(dstform); in extractnarrow()
1988 result = usrc[i] & MaxUintFromFormat(dstform); in extractnarrow()
1992 dst.SetInt(dstform, offset + i, result); in extractnarrow()
1994 dst.SetUint(dstform, offset + i, result); in extractnarrow()