Home | History | Annotate | Download | only in Sema

Lines Matching refs:APFloat

2867   using llvm::APFloat;
2868 APFloat Val(Format);
2870 APFloat::opStatus result = Literal.GetFloatValue(Val);
2873 // we underflowed to zero (APFloat reports denormals as underflow).
2874 if ((result & APFloat::opOverflow) ||
2875 ((result & APFloat::opUnderflow) && Val.isZero())) {
2878 if (result & APFloat::opOverflow) {
2880 APFloat::getLargest(Format).toString(buffer);
2883 APFloat::getSmallest(Format).toString(buffer);
2891 bool isExact = (result == APFloat::opOK);