/external/skia/src/gpu/effects/generated/ |
D | GrRectBlurEffect.cpp | 33 auto isFast = _outer.isFast; in emitCode() local 34 (void)isFast; in emitCode() 69 (_outer.isFast ? "true" : "false"), in emitCode() 146 auto isFast = _outer.isFast; in onSetData() local 147 (void)isFast; in onSetData() 167 b->addBool(isFast, "isFast"); in onGetGLSLProcessorKey() 175 if (isFast != that.isFast) return false; in onIsEqual() 183 , isFast(src.isFast) { in GrRectBlurEffect() 208 (isFast ? "true" : "false")); in onDumpInfo()
|
D | GrRectBlurEffect.h | 147 bool isFast = insetRect.isSorted(); in Make() local 153 isFast)); in Make() 161 bool isFast; variable 169 bool isFast) in GrRectBlurEffect() argument 176 , isFast(isFast) { in GrRectBlurEffect()
|
/external/skia/src/gpu/effects/ |
D | GrRectBlurEffect.fp | 43 layout(key) in bool isFast; 159 // It actually simplifies things a bit in the !isFast case, too. 170 bool isFast = insetRect.isSorted(); 176 isFast)); 187 @if (isFast) {
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | IVDescriptors.h | 319 !cast<FPMathOperator>(InductionBinOp)->isFast(); in hasUnsafeAlgebra() 328 if (!InductionBinOp || cast<FPMathOperator>(InductionBinOp)->isFast()) in getUnsafeAlgebraInst()
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | IVDescriptors.h | 316 !cast<FPMathOperator>(InductionBinOp)->isFast(); in hasUnsafeAlgebra() 325 if (!InductionBinOp || cast<FPMathOperator>(InductionBinOp)->isFast()) in getUnsafeAlgebraInst()
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | Operator.h | 213 bool isFast() const { return all(); } in isFast() function 317 bool isFast() const { in isFast() function
|
D | Instruction.h | 443 bool isFast() const;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Operator.h | 213 bool isFast() const { return all(); } in isFast() function 317 bool isFast() const { in isFast() function
|
D | Instruction.h | 404 bool isFast() const;
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | ExpandReductions.cpp | 163 !FMF.isFast()) in expandReductions()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | SimplifyLibCalls.cpp | 1350 if (!CI->isFast()) in optimizeCAbs() 1479 if (BaseFn && BaseFn->hasOneUse() && BaseFn->isFast() && Pow->isFast()) { in replacePowWithExp() 1870 if (!Log->isFast() || !Arg || !Arg->isFast() || !Arg->hasOneUse()) in optimizeLog() 2018 if (!CI->isFast()) in optimizeSqrt() 2022 if (!I || I->getOpcode() != Instruction::FMul || !I->isFast()) in optimizeSqrt() 2044 if (OtherMul0 == OtherMul1 && cast<Instruction>(Op0)->isFast()) { in optimizeSqrt() 2090 if (!CI->isFast() || !OpC->isFast()) in optimizeTan() 3044 else if (isa<FPMathOperator>(CI) && CI->isFast()) in optimizeCall()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | SimplifyLibCalls.cpp | 1368 if (!CI->isFast()) in optimizeCAbs() 1497 if (BaseFn && BaseFn->hasOneUse() && BaseFn->isFast() && Pow->isFast()) { in replacePowWithExp() 1875 if (!Log->isFast() || !Arg || !Arg->isFast() || !Arg->hasOneUse()) in optimizeLog() 2023 if (!CI->isFast()) in optimizeSqrt() 2027 if (!I || I->getOpcode() != Instruction::FMul || !I->isFast()) in optimizeSqrt() 2049 if (OtherMul0 == OtherMul1 && cast<Instruction>(Op0)->isFast()) { in optimizeSqrt() 2095 if (!CI->isFast() || !OpC->isFast()) in optimizeTan() 3067 else if (isa<FPMathOperator>(CI) && CI->isFast()) in optimizeCall()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instruction.cpp | 194 bool Instruction::isFast() const { in isFast() function in Instruction 196 return cast<FPMathOperator>(this)->isFast(); in isFast()
|
/external/llvm-project/llvm/lib/IR/ |
D | Instruction.cpp | 218 bool Instruction::isFast() const { in isFast() function in Instruction 220 return cast<FPMathOperator>(this)->isFast(); in isFast()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | IVDescriptors.cpp | 546 I1->isFast()) in isConditionalRdxPattern() 549 if (m_FMul(m_Value(Op1), m_Value(Op2)).match(I1) && (I1->isFast())) in isConditionalRdxPattern()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | IVDescriptors.cpp | 548 I1->isFast()) in isConditionalRdxPattern() 551 if (m_FMul(m_Value(Op1), m_Value(Op2)).match(I1) && (I1->isFast())) in isConditionalRdxPattern()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | Reassociate.cpp | 151 if (!isa<FPMathOperator>(I) || I->isFast()) in isReassociableOp() 161 if (!isa<FPMathOperator>(I) || I->isFast()) in isReassociableOp() 576 !cast<Instruction>(Op)->isFast())) && in LinearizeExprTree() 2103 if (I->getType()->isFPOrFPVectorTy() && !I->isFast()) in OptimizeInst()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | Reassociate.cpp | 152 if (!isa<FPMathOperator>(I) || I->isFast()) in isReassociableOp() 162 if (!isa<FPMathOperator>(I) || I->isFast()) in isReassociableOp() 577 !cast<Instruction>(Op)->isFast())) && in LinearizeExprTree() 2201 if (I->getType()->isFPOrFPVectorTy() && !I->isFast()) in OptimizeInst()
|
/external/clang/include/clang/Lex/ |
D | Preprocessor.h | 1505 void IncrementPasteCounter(bool isFast) { in IncrementPasteCounter() argument 1506 if (isFast) in IncrementPasteCounter()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | SelectionDAGNodes.h | 472 bool isFast() const { 991 bool isFast() { return Flags.isFast(); }
|
/external/llvm-project/clang/include/clang/Lex/ |
D | Preprocessor.h | 1867 void IncrementPasteCounter(bool isFast) { in IncrementPasteCounter() argument 1868 if (isFast) in IncrementPasteCounter()
|
/external/llvm-project/llvm/unittests/IR/ |
D | IRBuilderTest.cpp | 513 EXPECT_TRUE(FAdd->isFast()); in TEST_F() 521 EXPECT_TRUE(FAdd->isFast()); in TEST_F()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorizationLegality.cpp | 778 !I.isFast()) { in canVectorizeInstrs()
|
/external/llvm-project/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorizationLegality.cpp | 814 !I.isFast()) { in canVectorizeInstrs()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUCodeGenPrepare.cpp | 561 bool UnsafeDiv = HasUnsafeFPMath || FMF.isFast() || in visitFDiv()
|