Searched refs:isAffine (Results 1 - 14 of 14) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DLoopDependenceAnalysis.h78 /// isAffine - An SCEV is affine with respect to the loop nest starting at
81 bool isAffine(const SCEV*) const;
H A DScalarEvolutionExpressions.h311 if (isAffine()) return getOperand(1);
317 /// isAffine - Return true if this is an affine AddRec (i.e., it represents
319 bool isAffine() const { function in class:llvm::SCEVAddRecExpr
/external/llvm/lib/Analysis/
H A DLoopDependenceAnalysis.cpp151 bool LoopDependenceAnalysis::isAffine(const SCEV *S) const { function in class:LoopDependenceAnalysis
153 return isLoopInvariant(S) || (rec && rec->isAffine());
200 if (!isAffine(A) || !isAffine(B)) {
H A DIVUsers.cpp56 return AR->isAffine() ||
H A DScalarEvolution.cpp936 if (AR->isAffine()) {
1202 if (AR->isAffine()) {
3092 if (AddRec->getLoop() == L && AddRec->isAffine()) {
3350 if (AddRec->isAffine()) {
3501 if (AddRec->isAffine()) {
4624 if (!IdxExpr || !IdxExpr->isAffine() || isLoopInvariant(IdxExpr, L) ||
5458 if (!AddRec->isAffine())
6305 if (AddRec->isAffine()) {
6445 if (isAffine()) {
H A DScalarEvolutionExpander.cpp1365 if (S->isAffine() && S->getOperand(1)->isOne()) {
1375 if (S->isAffine()) // {0,+,F} --> i*F
/external/webkit/Source/WebCore/css/
H A DWebKitCSSMatrix.cpp178 if (m_matrix.isAffine())
H A DCSSComputedStyleDeclaration.cpp483 if (transform.isAffine()) {
/external/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp287 if (StoreEv == 0 || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine())
318 if (LoadEv && LoadEv->getLoop() == CurLoop && LoadEv->isAffine() &&
344 if (Ev == 0 || Ev->getLoop() != CurLoop || !Ev->isAffine())
H A DIndVarSimplify.cpp1366 if (!AR || AR->getLoop() != L || !AR->isAffine())
1428 assert(AR && AR->getLoop() == L && AR->isAffine() && "bad loop counter");
H A DLoopStrengthReduce.cpp850 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
1885 if (!AR || !AR->isAffine() ||
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DTransformationMatrix.h264 bool isAffine() const function in class:WebCore::TransformationMatrix
/external/webkit/Source/WebCore/rendering/
H A DRenderLayer.h442 bool has3DTransform() const { return m_transform && !m_transform->isAffine(); }
H A DRenderLayer.cpp2951 if (transformState.m_accumulatedTransform.isAffine())

Completed in 261 milliseconds