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.cpp79 int CommonLsb = std::min(getLsbWeight(), Other.getLsbWeight()); in compare() local
81 unsigned CommonWidth = CommonMsb - CommonLsb + 1; in compare()
86 ThisVal = ThisVal.shl(getLsbWeight() - CommonLsb); in compare()
87 OtherVal = OtherVal.shl(Other.getLsbWeight() - CommonLsb); in compare()
163 int CommonLsb = std::min(getLsbWeight(), Other.getLsbWeight()); in getCommonSemantics() local
166 unsigned CommonWidth = CommonMSb - CommonLsb + 1; in getCommonSemantics()
183 return FixedPointSemantics(CommonWidth, Lsb{CommonLsb}, ResultIsSigned, in getCommonSemantics()