Home
last modified time | relevance | path

Searched full:makemaker (Results 1 – 6 of 6) sorted by relevance

/third_party/openssl/external/perl/Text-Template-1.56/
DMakefile.PL1 # This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.012.
7 use ExtUtils::MakeMaker;
13 "ExtUtils::MakeMaker" => 0
62 unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
69 unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
DMETA.yml16 ExtUtils::MakeMaker: '0'
DMETA.json19 "ExtUtils::MakeMaker" : "0",
/third_party/cups-filters/scripting/perl/
DMakefile.PL1 use ExtUtils::MakeMaker;
2 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
/third_party/skia/src/effects/imagefilters/
DSkBlurImageFilter.cpp217 static PassMaker* MakeMaker(double sigma, SkArenaAlloc* alloc) { in MakeMaker() function in __anon3c5d59790211::GaussPass
473 static PassMaker* MakeMaker(double sigma, SkArenaAlloc* alloc) { in MakeMaker() function in __anon3c5d59790211::TentPass
763 auto makeMaker = [&](double sigma) -> PassMaker* { in cpu_blur() local
765 if (PassMaker* maker = GaussPass::MakeMaker(sigma, &alloc)) { in cpu_blur()
768 if (PassMaker* maker = TentPass::MakeMaker(sigma, &alloc)) { in cpu_blur()
774 PassMaker* makerX = makeMaker(limitedSigma.x()); in cpu_blur()
775 PassMaker* makerY = makeMaker(limitedSigma.y()); in cpu_blur()
943 // Please see the comment on TentPass::MakeMaker for how the limit of 2183 for sigma is in onFilterImage()
/third_party/skia/m133/src/core/
DSkBlurEngine.cpp167 static PassMaker* MakeMaker(float sigma, SkArenaAlloc* alloc) { in MakeMaker() function in __anondbf103d70111::GaussPass
498 static PassMaker* MakeMaker(float sigma, SkArenaAlloc* alloc) { in MakeMaker() function in __anondbf103d70111::TentPass
728 SkASSERT(SkBlurEngine::BoxBlurWindow(kMaxSigma) <= 255); // see GaussPass::MakeMaker(). in maxSigma()
759 auto makeMaker = [&](float sigma) -> PassMaker* { in blur() local
761 if (PassMaker* maker = GaussPass::MakeMaker(sigma, &alloc)) { in blur()
764 if (PassMaker* maker = TentPass::MakeMaker(sigma, &alloc)) { in blur()
770 PassMaker* makerX = makeMaker(sigma.width()); in blur()
771 PassMaker* makerY = makeMaker(sigma.height()); in blur()