Home
last modified time | relevance | path

Searched refs:fDivisor (Results 1 – 5 of 5) sorted by relevance

/external/skia/bench/
DDecodingSubsetBench.cpp23 , fDivisor(divisor) in DecodingSubsetBench()
41 fName.printf("DecodeSubset_%dx%d_%s_%s", fDivisor, fDivisor, in DecodingSubsetBench()
63 const int sW = w / fDivisor; in onDraw()
64 const int sH = h / fDivisor; in onDraw()
Dnanobench.cpp497 , fDivisor(2) { in BenchmarkStream()
762 } else if (fDivisor > w || fDivisor > h) { in next()
764 fDivisor, path.c_str(), w, h); in next()
767 const int sW = w / fDivisor; in next()
768 const int sH = h / fDivisor; in next()
782 fDivisor); in next()
837 const int fDivisor; member in BenchmarkStream
DDecodingSubsetBench.h33 const int fDivisor; variable
/external/skia/dm/
DDMSrcSink.cpp186 ImageSrc::ImageSrc(Path path, int divisor) : fPath(path), fDivisor(divisor) {} in ImageSrc()
200 if (fDivisor == 0) { in draw()
228 if (fDivisor > w || fDivisor > h) { in draw()
230 fDivisor, fPath.c_str(), w, h); in draw()
232 const int subsetWidth = w / fDivisor, in draw()
233 subsetHeight = h / fDivisor; in draw()
DDMSrcSink.h126 const int fDivisor; variable