Lines Matching refs:repeatCount
412 int rowNumber, int repeatCount, bool writeTransparentPixels) in haveDecodedRow() argument
425 const int yEnd = std::min(yBegin + rowNumber + repeatCount, this->dimensions().height()); in haveDecodedRow()
440 for (int i = 0; i < repeatCount; i++) { in haveDecodedRow()
450 repeatCount -= i; in haveDecodedRow()
452 repeatCount = (repeatCount - 1) / sampleY + 1; in haveDecodedRow()
455 if (dstRow + repeatCount > scaledHeight) { in haveDecodedRow()
456 repeatCount = scaledHeight - dstRow; in haveDecodedRow()
457 SkASSERT(repeatCount >= 1); in haveDecodedRow()
469 repeatCount = SkTMin(repeatCount, this->dstInfo().height() - yBegin); in haveDecodedRow()
523 if (repeatCount > 1) { in haveDecodedRow()
528 for (int i = 1; i < repeatCount; i++) { in haveDecodedRow()