Lines Matching defs:count

28                                                         SkPMColor* dst, int count) {
49 (uint64_t)SkFractionalIntToInt(fx + dx * (count - 1)) <= maxX)
51 int count4 = count >> 2;
63 for (int i = (count4 << 2); i < count; ++i) {
70 for (int i = 0; i < count; ++i) {
78 const uint32_t* xy, int count, SkPMColor* colors) {
79 SkASSERT(count > 0 && colors != nullptr);
92 sk_memset32(colors, SkAlphaMulQ(row[0], s.fAlphaScale), count);
97 while (count >= 4) {
111 count -= 4;
116 while (count --> 0) {
122 const uint32_t* xy, int count, SkPMColor* colors) {
123 SkASSERT(count > 0 && colors != nullptr);
131 while (count --> 0) {
298 int count) {
301 SkASSERT(count > 0 && colors != nullptr);
312 int n = std::min(-ix, count);
314 count -= n;
315 if (0 == count) {
324 int n = std::min(maxX - ix + 1, count);
326 count -= n;
327 if (0 == count) {
332 SkASSERT(count > 0);
334 sk_memset32(colors, row[maxX], count);
360 int count) {
363 SkASSERT(count > 0 && colors != nullptr);
374 int n = std::min(stopX - ix, count);
376 count -= n;
377 if (0 == count) {
413 int count) {
416 SkASSERT(count > 0 && colors != nullptr);
509 sk_memset32(colors, color, count);
513 SkPMColor* colors, int count) {
515 sk_memset32(colors, 0, count);
584 static void check_scale_nofilter(uint32_t bitmapXY[], int count,
590 for (int i = 0; i < count; ++i) {
595 static void check_scale_filter(uint32_t bitmapXY[], int count,
603 for (int i = 0; i < count; ++i) {
612 static void check_affine_nofilter(uint32_t bitmapXY[], int count, unsigned mx, unsigned my) {
613 for (int i = 0; i < count; ++i) {
622 static void check_affine_filter(uint32_t bitmapXY[], int count, unsigned mx, unsigned my) {
623 for (int i = 0; i < count; ++i) {
639 uint32_t bitmapXY[], int count,
642 SkASSERT(count > 0);
644 state.fMatrixProc(state, bitmapXY, count, x, y);
646 void (*proc)(uint32_t bitmapXY[], int count, unsigned mx, unsigned my);
654 proc(bitmapXY, count, state.fPixmap.width(), state.fPixmap.height());