OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Aligned
(Results
1 - 4
of
4
) 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/llvm/lib/Target/X86/
X86FastISel.cpp
83
bool
Aligned
= false);
85
bool
Aligned
= false);
239
const X86AddressMode &AM, bool
Aligned
) {
266
if (
Aligned
)
272
if (
Aligned
)
281
if (
Aligned
)
294
const X86AddressMode &AM, bool
Aligned
) {
329
return X86FastEmitStore(VT, ValReg, AM,
Aligned
);
705
bool
Aligned
= S->getAlignment() == 0 || S->getAlignment() >= SABIAlignment;
715
return X86FastEmitStore(VT, I->getOperand(0), AM,
Aligned
);
[
all
...]
/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
494
// The glvalue must be suitably
aligned
.
499
llvm::Value *
Aligned
=
501
Cond = Cond ? Builder.CreateAnd(Cond,
Aligned
) :
Aligned
;
[
all
...]
Completed in 65 milliseconds