HomeSort by: relevance | last modified time | path
    Searched defs:NoInfs (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Operator.h 182 NoInfs = (1 << 2),
207 bool noInfs() const { return 0 != (Flags & NoInfs); }
223 Flags = (Flags & ~NoInfs) | B * NoInfs;
278 (SubclassOptionalData & ~FastMathFlags::NoInfs) |
279 (B * FastMathFlags::NoInfs);
323 (SubclassOptionalData & FastMathFlags::NoInfs) != 0 &&
342 return (SubclassOptionalData & FastMathFlags::NoInfs) != 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
LLVMBitCodes.h 469 NoInfs = (1 << 2),
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 377 bool NoInfs : 1;
395 NoInfs(false), NoSignedZeros(false), AllowReciprocal(false),
415 void setNoInfs(bool b) { NoInfs = b; }
428 bool hasNoInfs() const { return NoInfs; }
443 NoInfs &= Flags.NoInfs;

Completed in 18 milliseconds