Lines Matching refs:fScale
175 fScale = 1; in init()
182 fScale = 1; in init()
200 if (fScale != 1) { in progress()
201 outStr.appendf(" scale=%d", fScale); in progress()
221 int fScale; member
481 fScale = 1; in testOne()
482 while (width / fScale > 32767 || height / fScale > 32767) { in testOne()
483 ++fScale; in testOne()
486 int dimX = SkScalarCeilToInt(width / fScale); in testOne()
487 int dimY = SkScalarCeilToInt(height / fScale); in testOne()
491 SkDebugf("-%d-", fScale); in testOne()
492 } while (++fScale < 256); in testOne()
493 if (fScale >= 256) { in testOne()
504 drawPict(pic, &oldCanvas, fScale); in testOne()
505 drawPict(pic, &opCanvas, fScale); in testOne()