HomeSort by relevance Sort by last modified time
    Searched refs:NoNaNs (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/IR/
Operator.h 173 NoNaNs = (1 << 1),
189 bool noNaNs() const { return 0 != (Flags & NoNaNs); }
196 void setNoNaNs() { Flags |= NoNaNs; }
235 (SubclassOptionalData & ~FastMathFlags::NoNaNs) |
236 (B * FastMathFlags::NoNaNs);
276 return (SubclassOptionalData & FastMathFlags::NoNaNs) != 0;
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 327 bool NoNaNs : 1;
339 NoNaNs = false;
350 void setNoNaNs(bool b) { NoNaNs = b; }
360 bool hasNoNaNs() const { return NoNaNs; }
369 (UnsafeAlgebra << 3) | (NoNaNs << 4) | (NoInfs << 5) |
    [all...]
  /external/llvm/unittests/IR/
IRBuilderTest.cpp 226 EXPECT_TRUE(Builder.getFastMathFlags().NoNaNs);
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 556 Flags |= FastMathFlags::NoNaNs;
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 818 Flags |= FastMathFlags::NoNaNs;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 833 if (0 != (Val & FastMathFlags::NoNaNs))
    [all...]

Completed in 227 milliseconds