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

  /external/llvm/include/llvm/IR/
Operator.h 172 UnsafeAlgebra = (1 << 0),
193 bool unsafeAlgebra() const { return 0 != (Flags & UnsafeAlgebra); }
201 Flags |= UnsafeAlgebra;
222 (SubclassOptionalData & ~FastMathFlags::UnsafeAlgebra) |
223 (B * FastMathFlags::UnsafeAlgebra);
270 return (SubclassOptionalData & FastMathFlags::UnsafeAlgebra) != 0;
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 326 bool UnsafeAlgebra : 1;
338 UnsafeAlgebra = false;
349 void setUnsafeAlgebra(bool b) { UnsafeAlgebra = b; }
359 bool hasUnsafeAlgebra() const { return UnsafeAlgebra; }
369 (UnsafeAlgebra << 3) | (NoNaNs << 4) | (NoInfs << 5) |
    [all...]
  /external/llvm/unittests/IR/
IRBuilderTest.cpp 168 EXPECT_TRUE(Builder.getFastMathFlags().UnsafeAlgebra);
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 554 Flags |= FastMathFlags::UnsafeAlgebra;
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 816 Flags |= FastMathFlags::UnsafeAlgebra;
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 831 if (0 != (Val & FastMathFlags::UnsafeAlgebra))
    [all...]

Completed in 309 milliseconds