Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFixedPoint.cpp89 int CommonLsb = std::min(getLsbWeight(), Other.getLsbWeight()); in compare() local
91 unsigned CommonWidth = CommonMsb - CommonLsb + 1; in compare()
96 ThisVal = ThisVal.shl(getLsbWeight() - CommonLsb); in compare()
97 OtherVal = OtherVal.shl(Other.getLsbWeight() - CommonLsb); in compare()
173 int CommonLsb = std::min(getLsbWeight(), Other.getLsbWeight()); in getCommonSemantics() local
176 unsigned CommonWidth = CommonMSb - CommonLsb + 1; in getCommonSemantics()
193 return FixedPointSemantics(CommonWidth, Lsb{CommonLsb}, ResultIsSigned, in getCommonSemantics()