HomeSort by: relevance | last modified time | path
    Searched refs:opStatus (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APFloat.h 206 enum opStatus {
275 opStatus add(const IEEEFloat &, roundingMode);
276 opStatus subtract(const IEEEFloat &, roundingMode);
277 opStatus multiply(const IEEEFloat &, roundingMode);
278 opStatus divide(const IEEEFloat &, roundingMode);
280 opStatus remainder(const IEEEFloat &);
282 opStatus mod(const IEEEFloat &);
283 opStatus fusedMultiplyAdd(const IEEEFloat &, const IEEEFloat &, roundingMode);
284 opStatus roundToIntegral(roundingMode);
286 opStatus next(bool nextDown)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
APFloat.cpp 1068 opStatus status;
1293 IEEEFloat::opStatus IEEEFloat::handleOverflow(roundingMode rounding_mode) {
1300 return (opStatus) (opOverflow | opInexact);
1355 IEEEFloat::opStatus IEEEFloat::normalize(roundingMode rounding_mode,
1436 return (opStatus) (opOverflow | opInexact);
1458 return (opStatus) (opUnderflow | opInexact);
1461 IEEEFloat::opStatus IEEEFloat::addOrSubtractSpecials(const IEEEFloat &rhs,
1586 IEEEFloat::opStatus IEEEFloat::multiplySpecials(const IEEEFloat &rhs) {
1630 IEEEFloat::opStatus IEEEFloat::divideSpecials(const IEEEFloat &rhs) {
1676 IEEEFloat::opStatus IEEEFloat::modSpecials(const IEEEFloat &rhs)
    [all...]
APFixedPoint.cpp 140 APFloat::opStatus Status = F.convertFromAPInt(MaxInt, MaxInt.isSigned(),
473 APFloat::opStatus S = Flt.convertFromAPInt(Val, Sema.isSigned(), RM);
StringRef.cpp 589 APFloat::opStatus Status = *StatusOrErr;
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
LiteralSupport.h 115 llvm::APFloat::opStatus GetFloatValue(llvm::APFloat &Result);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 1786 APFloat::opStatus status =
1891 APFloat::opStatus Status =
1994 APFloat::opStatus St = U.roundToIntegral(*RM);
2231 APFloat::opStatus status = Val.convert(
2373 if (APFloat::opStatus::opOK == V.mod(Op2->getValueAPF()))
2381 if (APFloat::opStatus::opOK == V.remainder(Op2->getValueAPF()))
  /src/external/apache2/llvm/dist/clang/lib/Lex/
LiteralSupport.cpp 1076 llvm::APFloat::opStatus
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 2556 APFloat::opStatus St) {
2579 if ((St & APFloat::opStatus::opInvalidOp) &&
2601 APFloat::opStatus St;
2626 APFloat::opStatus St = Result.convertFromAPInt(Value, Value.isSigned(),
2837 APFloat::opStatus St;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 4687 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive);
4693 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero);
4699 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative);
4717 APFloat::opStatus s =
5385 // rounding mode, checking the "opStatus" return value from the APFloat
TargetLowering.cpp 8643 APFloat::opStatus MinStatus =
8645 APFloat::opStatus MaxStatus =
8647 bool AreExactFloatBounds = !(MinStatus & APFloat::opStatus::opInexact) &&
8648 !(MaxStatus & APFloat::opStatus::opInexact);
DAGCombiner.cpp 14086 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 1758 APFloat::opStatus Status = FPLiteral.convert(*getFltSemantics(VT),
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 20649 LLVM_ATTRIBUTE_UNUSED APFloat::opStatus Status = APFloat::opOK;
21589 APFloat::opStatus MinStatus = MinFloat.convertFromAPInt(
21591 APFloat::opStatus MaxStatus = MaxFloat.convertFromAPInt(
21593 bool AreExactFloatBounds = !(MinStatus & APFloat::opStatus::opInexact)
21594 && !(MaxStatus & APFloat::opStatus::opInexact);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOverload.cpp 402 llvm::APFloat::opStatus ConvertStatus = FloatVal.convert(
SemaExpr.cpp 3596 APFloat::opStatus result = Literal.GetFloatValue(Val);

Completed in 138 milliseconds