HomeSort by relevance Sort by last modified time
    Searched defs:NoAlias (Results 1 - 6 of 6) 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) {}
101 * More precisely, noalias() allows to bypass the EvalBeforeAssignBit flag.
103 * expressions have this flag. Therefore, noalias() is only usefull when
106 * Here are some examples where noalias is usefull:
108 * D.noalias() = A * B;
109 * D.noalias() += A.transpose() * B
127 NoAlias<Derived,MatrixBase> MatrixBase<Derived>::noalias() function in class:Eigen::MatrixBase
    [all...]
  /external/v8/src/crankshaft/
hydrogen-alias-analysis.h 64 inline bool NoAlias(HValue* a, HValue* b) {
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILDeviceInfo.h 50 NoAlias = 0x10, // Cached loads.
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 29 // - NoAlias doesn't imply inequal pointers. The most obvious example of this
32 // In this and other situations, the pointers may be both NoAlias and
80 NoAlias = 0,
202 return alias(LocA, LocB) == NoAlias;
    [all...]
  /external/llvm/include/llvm/IR/
Metadata.h 551 : TBAA(T), Scope(S), NoAlias(N) {}
554 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
559 explicit operator bool() const { return TBAA || Scope || NoAlias; }
564 /// \brief The tag for alias scope specification (used with noalias).
567 /// \brief The tag specifying the noalias scope.
568 MDNode *NoAlias;
585 DenseMapInfo<MDNode *>::getHashValue(Val.NoAlias);
    [all...]
  /external/valgrind/VEX/priv/
ir_opt.c     [all...]

Completed in 412 milliseconds