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

  /external/eigen/Eigen/src/Core/util/
Constants.h 141 * means the first coefficient packet is guaranteed to be aligned */
184 * Enum for indicating whether an object is aligned or not. */
186 /** Object is not correctly aligned for vectorization. */
188 /** Object is aligned for vectorization. */
189 Aligned=1
262 /** \internal Don't require alignment for the matrix itself (the array of coefficients, if dynamically allocated, may still be requested to be aligned) */ // FIXME --- clarify the situation
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 65 const AlignedAttr *Aligned, Decl *New, bool IsPackExpansion) {
66 if (Aligned->isAlignmentExpr()) {
69 ExprResult Result = S.SubstExpr(Aligned->getAlignmentExpr(), TemplateArgs);
71 S.AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>(),
72 Aligned->getSpellingListIndex(), IsPackExpansion);
74 TypeSourceInfo *Result = S.SubstType(Aligned->getAlignmentType(),
75 TemplateArgs, Aligned->getLocation(),
78 S.AddAlignedAttr(Aligned->getLocation(), New, Result,
79 Aligned->getSpellingListIndex(), IsPackExpansion);
85 const AlignedAttr *Aligned, Decl *New)
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 554 // The glvalue must be suitably aligned.
559 llvm::Value *Aligned =
561 Cond = Cond ? Builder.CreateAnd(Cond, Aligned) : Aligned;
    [all...]

Completed in 108 milliseconds