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

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Operator.h 184 AllowReciprocal = (1 << 4),
209 bool allowReciprocal() const { return 0 != (Flags & AllowReciprocal); }
229 Flags = (Flags & ~AllowReciprocal) | B * AllowReciprocal;
290 (SubclassOptionalData & ~FastMathFlags::AllowReciprocal) |
291 (B * FastMathFlags::AllowReciprocal);
325 (SubclassOptionalData & FastMathFlags::AllowReciprocal) != 0 &&
352 return (SubclassOptionalData & FastMathFlags::AllowReciprocal) != 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
LLVMBitCodes.h 471 AllowReciprocal = (1 << 4),
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 379 bool AllowReciprocal : 1;
395 NoInfs(false), NoSignedZeros(false), AllowReciprocal(false),
417 void setAllowReciprocal(bool b) { AllowReciprocal = b; }
430 bool hasAllowReciprocal() const { return AllowReciprocal; }
445 AllowReciprocal &= Flags.AllowReciprocal;
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 1181 if (0 != (Val & bitc::AllowReciprocal))
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 1477 Flags |= bitc::AllowReciprocal;

Completed in 29 milliseconds