Searched refs:rmNearestTiesToEven (Results 1 - 25 of 27) sorted by relevance

12

/external/llvm/unittests/ADT/
H A DAPFloatTest.cpp23 F.convertFromString(Str, llvm::APFloat::rmNearestTiesToEven);
664 P.roundToIntegral(APFloat::rmNearestTiesToEven);
677 P.roundToIntegral(APFloat::rmNearestTiesToEven);
690 P.roundToIntegral(APFloat::rmNearestTiesToEven);
702 test.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
707 test.add(APFloat(APFloat::x87DoubleExtended, "1.0"), APFloat::rmNearestTiesToEven); member in class:__anon9225::APFloat
708 test.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
713 test.add(APFloat(APFloat::IEEEquad, "1.0"), APFloat::rmNearestTiesToEven); member in class:__anon9225::APFloat
714 test.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
719 test.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
[all...]
/external/llvm/lib/Support/
H A DAPFloat.cpp740 normalize(rmNearestTiesToEven, lfExactlyZero);
774 convertFromString(text, rmNearestTiesToEven);
1122 if (rounding_mode == rmNearestTiesToEven ||
1159 case rmNearestTiesToEven:
1653 fs = V.divide(rhs, rmNearestTiesToEven);
1661 rmNearestTiesToEven, &ignored);
1666 rmNearestTiesToEven);
1669 fs = V.multiply(rhs, rmNearestTiesToEven);
1672 fs = subtract(V, rmNearestTiesToEven);
1694 fs = V.divide(rhs, rmNearestTiesToEven);
[all...]
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp606 APFloat::rmNearestTiesToEven);
621 APFloat::rmNearestTiesToEven);
756 apfLHS.add(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); member in class:APFloat
760 apfLHS.subtract(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); member in class:APFloat
764 apfLHS.multiply(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); member in class:APFloat
768 apfLHS.divide(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); member in class:APFloat
772 apfLHS.mod(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); member in class:APFloat
/external/llvm/include/llvm/ADT/
H A DAPFloat.h151 rmNearestTiesToEven, enumerator in enum:llvm::APFloat::roundingMode
/external/clang/lib/AST/
H A DExprConstant.cpp1189 APFloat::rmNearestTiesToEven, &ignored)
1212 APFloat::rmNearestTiesToEven)
5672 Result.multiply(RHS, APFloat::rmNearestTiesToEven);
5675 Result.add(RHS, APFloat::rmNearestTiesToEven);
5678 Result.subtract(RHS, APFloat::rmNearestTiesToEven);
5681 Result.divide(RHS, APFloat::rmNearestTiesToEven);
5957 APFloat::rmNearestTiesToEven);
5959 APFloat::rmNearestTiesToEven);
5968 APFloat::rmNearestTiesToEven);
5970 APFloat::rmNearestTiesToEven);
[all...]
H A DAPValue.cpp231 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
H A DExpr.cpp617 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
/external/llvm/lib/VMCore/
H A DConstantFold.cpp580 APFloat::rmNearestTiesToEven, &ignored);
652 APFloat::rmNearestTiesToEven);
1121 (void)C3V.add(C2V, APFloat::rmNearestTiesToEven);
1124 (void)C3V.subtract(C2V, APFloat::rmNearestTiesToEven);
1127 (void)C3V.multiply(C2V, APFloat::rmNearestTiesToEven);
1130 (void)C3V.divide(C2V, APFloat::rmNearestTiesToEven);
1133 (void)C3V.mod(C2V, APFloat::rmNearestTiesToEven);
H A DConstants.cpp504 APFloat::rmNearestTiesToEven, &ignored); member in class:APFloat
1134 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1140 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1148 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
H A DAsmWriter.cpp759 apf.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
/external/clang/lib/Lex/
H A DLiteralSupport.cpp818 APFloat::rmNearestTiesToEven);
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp1205 : APFloat::rmNearestTiesToEven;
1229 Val.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &lost);
1334 Val.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &lost);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp102 (void) Val2.convert(*EVTToAPFloatSemantics(VT), APFloat::rmNearestTiesToEven, member in class:APFloat
1085 apf.convert(*EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven, member in class:APFloat
2452 APFloat::rmNearestTiesToEven);
2508 APFloat::rmNearestTiesToEven, &ignored); member in class:APFloat
3057 s = V1.add(V2, APFloat::rmNearestTiesToEven);
3062 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
3067 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
3072 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
3077 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
3094 APFloat::rmNearestTiesToEven, member in class:APFloat
[all...]
H A DLegalizeDAG.cpp2749 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2722 APFloat::rmNearestTiesToEven); member in class:APFloat
2734 APFloat::rmNearestTiesToEven); member in class:APFloat
2747 APFloat::rmNearestTiesToEven); member in class:APFloat
2758 APFloat::rmNearestTiesToEven); member in class:APFloat
2919 F.convert(*Sem, APFloat::rmNearestTiesToEven, &Lossy);
H A DInstCombineCasts.cpp1135 (void)F.convert(Sem, APFloat::rmNearestTiesToEven, &losesInfo);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1665 APF.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
1670 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
/external/llvm/include/llvm/
H A DConstants.h290 FV.convert(Val.getSemantics(), APFloat::rmNearestTiesToEven, &ignored);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp581 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
1805 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1210 APFloat::rmNearestTiesToEven, &ignored);
/external/llvm/lib/AsmParser/
H A DLLParser.cpp2536 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2539 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp1973 } else if (Value.convertFromString(IDVal, APFloat::rmNearestTiesToEven) ==
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp219 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &ignored);
/external/clang/lib/Sema/
H A DSemaChecking.cpp4198 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
4199 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
H A DSemaOverload.cpp323 llvm::APFloat::rmNearestTiesToEven);
359 llvm::APFloat::rmNearestTiesToEven, &ignored);

Completed in 567 milliseconds

12