Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFixedPoint.cpp81 unsigned CommonScale = std::max(getScale(), OtherScale); in compare() local
82 ThisVal = ThisVal.shl(CommonScale - getScale()); in compare()
83 OtherVal = OtherVal.shl(CommonScale - OtherScale); in compare()
153 unsigned CommonScale = std::max(getScale(), Other.getScale()); in getCommonSemantics() local
155 std::max(getIntegralBits(), Other.getIntegralBits()) + CommonScale; in getCommonSemantics()
172 return FixedPointSemantics(CommonWidth, CommonScale, ResultIsSigned, in getCommonSemantics()