reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/ADT/APFloat.h
  448   friend IEEEFloat scalbn(IEEEFloat X, int Exp, roundingMode);
  582 IEEEFloat scalbn(IEEEFloat X, int Exp, IEEEFloat::roundingMode);

References

include/llvm/ADT/APFloat.h
 1210     return APFloat(scalbn(X.U.IEEE, Exp, RM), X.getSemantics());
lib/Support/APFloat.cpp
 1789     IEEEFloat V = scalbn(rhs, ilogb(*this) - ilogb(rhs), rmNearestTiesToEven);
 1791       V = scalbn(V, -1, rmNearestTiesToEven);
 3882   return scalbn(Val, -Exp, RM);