HomeSort by relevance Sort by last modified time
    Searched defs:isExact (Results 1 - 10 of 10) sorted by null

  /external/llvm/unittests/ADT/
APFloatTest.cpp 351 bool isExact = false;
356 .convertToInteger(result, APFloat::rmTowardZero, &isExact));
357 EXPECT_TRUE(isExact);
362 .convertToInteger(result, APFloat::rmTowardZero, &isExact));
363 EXPECT_FALSE(isExact);
368 .convertToInteger(result, APFloat::rmTowardZero, &isExact));
369 EXPECT_FALSE(isExact);
374 .convertToInteger(result, APFloat::rmTowardZero, &isExact));
375 EXPECT_FALSE(isExact);
381 .convertToInteger(result, APFloat::rmTowardZero, &isExact));
    [all...]
  /external/llvm/include/llvm/
Operator.h 129 IsExact = (1 << 0)
135 SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (B * IsExact);
141 /// isExact - Test whether this division is known to be exact, with
143 bool isExact() const {
144 return SubclassOptionalData & IsExact;
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 34 bool isNUW = false, isNSW = false, isExact = false;
41 isExact = PEO->isExact();
62 if (isExact)
63 isExact = cast<PossiblyExactOperator>(I)->isExact();
125 if (isExact) NewBinOp->setIsExact();
405 bool isNUW = false, isNSW = false, isExact = false;
429 isExact = PEO->isExact();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 187 bool isExact;
189 APFloat::rmTowardZero, &isExact);
190 if (isExact) {
374 cast<BinaryOperator>(I)->isExact() &&
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 232 bool isExact = false;
238 &isExact) != APFloat::opOK || !isExact)
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]

Completed in 230 milliseconds