Lines Matching defs:getFpVal
74 bool isZero() const { return isInt() ? !IntVal : getFpVal().isZero(); }
91 const APFloat &getFpVal() const {
96 APFloat &getFpVal() {
270 set(That.getFpVal());
279 getFpVal().add(That.getFpVal(), RndMode);
284 const APFloat &T = That.getFpVal();
286 getFpVal().add(T, RndMode);
290 APFloat &T = getFpVal();
311 isInt() ? That.getFpVal().getSemantics() : getFpVal().getSemantics();
315 APFloat &F0 = getFpVal();
321 F0.multiply(That.getFpVal(), APFloat::rmNearestTiesToEven);
328 getFpVal().changeSign();
334 ConstantFP::get(Ty->getContext(), getFpVal());