HomeSort by relevance Sort by last modified time
    Searched refs:isAffine (Results 1 - 25 of 41) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LoopDependenceAnalysis.h 78 /// isAffine - An SCEV is affine with respect to the loop nest starting at
81 bool isAffine(const SCEV*) const;
ScalarEvolutionExpressions.h 310 if (isAffine()) return getOperand(1);
316 /// isAffine - Return true if this is an affine AddRec (i.e., it represents
318 bool isAffine() const {
  /external/swiftshader/third_party/LLVM/lib/Analysis/
LoopDependenceAnalysis.cpp 153 bool LoopDependenceAnalysis::isAffine(const SCEV *S) const {
155 return isLoopInvariant(S) || (rec && rec->isAffine());
202 if (!isAffine(A) || !isAffine(B)) {
IVUsers.cpp 55 return AR->isAffine() ||
  /cts/tests/tests/graphics/src/android/graphics/cts/
MatrixTest.java 70 assertTrue(mMatrix.isAffine());
76 assertTrue(mMatrix.isAffine());
82 assertFalse(mMatrix.isAffine());
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 285 if (StoreEv == 0 || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine())
316 if (LoadEv && LoadEv->getLoop() == CurLoop && LoadEv->isAffine() &&
342 if (Ev == 0 || Ev->getLoop() != CurLoop || !Ev->isAffine())
  /external/llvm/lib/Analysis/
ScalarEvolutionNormalization.cpp 132 if (AR->isAffine() &&
IVUsers.cpp 60 return AR->isAffine() ||
ScalarEvolutionExpander.cpp     [all...]
ScalarEvolution.cpp 786 if (!Numerator->isAffine())
    [all...]
  /frameworks/base/graphics/java/android/graphics/pdf/
PdfEditor.java 117 * non-null must be affine as per {@link android.graphics.Matrix#isAffine()}. If
307 if (matrix != null && !matrix.isAffine()) {
PdfRenderer.java 366 * {@link android.graphics.Matrix#isAffine() Matrix.isAffine()}. Hence, you can specify
398 if (transform != null && !transform.isAffine()) {
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 298 if (isAffine()) return getOperand(1);
306 bool isAffine() const {
  /frameworks/base/core/jni/android/graphics/
Matrix.cpp 148 static jboolean isAffine(jlong objHandle) {
350 {"nIsAffine","(J)Z", (void*) SkMatrixGlue::isAffine},
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 298 if (isAffine()) return getOperand(1);
306 bool isAffine() const {
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 298 if (isAffine()) return getOperand(1);
306 bool isAffine() const {
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 298 if (isAffine()) return getOperand(1);
306 bool isAffine() const {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 298 if (isAffine()) return getOperand(1);
306 bool isAffine() const {
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 298 if (isAffine()) return getOperand(1);
306 bool isAffine() const {
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 298 if (isAffine()) return getOperand(1);
306 bool isAffine() const {
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 298 if (isAffine()) return getOperand(1);
306 bool isAffine() const {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 298 if (isAffine()) return getOperand(1);
306 bool isAffine() const {
  /external/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 372 IndexAddRec && (IndexAddRec->getLoop() == L) && IndexAddRec->isAffine();
715 if (!AR->isAffine())
    [all...]
LoopIdiomRecognize.cpp 358 if (!StoreEv || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine())
411 if (!LoadEv || LoadEv->getLoop() != CurLoop || !LoadEv->isAffine())
663 if (!Ev || Ev->getLoop() != CurLoop || !Ev->isAffine())
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCLoopPreIncPrep.cpp 304 if (!BasePtrSCEV->isAffine())

Completed in 948 milliseconds

1 2