Lines Matching refs:getLsbWeight
26 OS << "lsb=" << getLsbWeight() << ", "; in print()
45 int RelativeUpscale = getLsbWeight() - DstSema.getLsbWeight(); in convert()
55 std::min(DstSema.getIntegralBits() - DstSema.getLsbWeight(), in convert()
89 int CommonLsb = std::min(getLsbWeight(), Other.getLsbWeight()); 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()
274 .relativeAShl(CommonFXSema.getLsbWeight()); in mul()
277 .relativeLShl(CommonFXSema.getLsbWeight()); in mul()
327 if (CommonFXSema.getLsbWeight() < 0) in div()
328 ThisVal = ThisVal.shl(-CommonFXSema.getLsbWeight()); in div()
329 else if (CommonFXSema.getLsbWeight() > 0) in div()
330 OtherVal = OtherVal.shl(CommonFXSema.getLsbWeight()); in div()
403 int Lsb = getLsbWeight(); in toString()
422 int Scale = -getLsbWeight(); in toString()
535 APFloat ScaleFactor(std::pow(2, Sema.getLsbWeight())); in convertToFloat()
590 APFloat ScaleFactor(std::pow(2, -DstFXSema.getLsbWeight())); in getFromFloatValue()
604 ScaleFactor = APFloat(std::pow(2, DstFXSema.getLsbWeight())); in getFromFloatValue()