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

  /external/eigen/Eigen/src/Core/
NoAlias.h 15 /** \class NoAlias
25 * It is the return type of MatrixBase::noalias()
28 * \sa MatrixBase::noalias()
31 class NoAlias
35 NoAlias(ExpressionType& expression) : m_expression(expression) {}
92 * More precisely, noalias() allows to bypass the EvalBeforeAssignBit flag.
94 * expressions have this flag. Therefore, noalias() is only usefull when
97 * Here are some examples where noalias is usefull:
99 * D.noalias() = A * B;
100 * D.noalias() += A.transpose() * B
118 NoAlias<Derived,MatrixBase> MatrixBase<Derived>::noalias() function in class:Eigen::MatrixBase
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 49 unsigned NoAlias, MayAlias, PartialAlias, MustAlias;
64 NoAlias = MayAlias = PartialAlias = MustAlias = 0;
183 case AliasAnalysis::NoAlias:
184 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent());
185 ++NoAlias; break;
260 unsigned AliasSum = NoAlias + MayAlias + PartialAlias + MustAlias;
266 errs() << " " << NoAlias << " no alias responses ";
267 PrintPercent(NoAlias, AliasSum);
275 << NoAlias*100/AliasSum << "%/" << MayAlias*100/AliasSum << "%/"
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 28 // - NoAlias doesn't imply inequal pointers. The most obvious example of this
31 // In this and other situations, the pointers may be both NoAlias and
162 NoAlias = 0, ///< No dependencies.
188 return alias(LocA, LocB) == NoAlias;
583 /// isNoAliasCall - Return true if this pointer is returned by a noalias
591 /// ByVal and NoAlias Arguments
592 /// NoAlias returns (e.g. calls to malloc)
  /external/llvm/lib/Target/R600/
AMDILDeviceInfo.h 48 NoAlias = 0x10, ///< Cached loads.
  /external/llvm/include/llvm/IR/
Attributes.h 76 NoAlias, ///< Considered to not alias after call
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/valgrind/main/VEX/priv/
ir_opt.c     [all...]

Completed in 3798 milliseconds