Lines Matching defs:row
451 const uint8_t* row = this->addr8(0, y);
453 a &= row[x];
464 const uint16_t* row = this->addr16(0, y);
466 a &= row[x];
476 const SkHalf* row = this->addr16(0, y);
478 if (row[x] < SK_Half1) {
498 const SkPMColor16* row = this->addr16(0, y);
500 c &= row[x];
513 const SkPMColor* row = this->addr32(0, y);
515 c &= row[x];
525 const SkHalf* row = (const SkHalf*)this->addr();
528 if (row[4 * x + 3] < SK_Half1) {
532 row += this->rowBytes() >> 1;
537 const float* row = (const float*)this->addr();
540 if (row[4 * x + 3] < 1.0f) {
544 row += this->rowBytes() >> 2;
552 const uint32_t* row = this->addr32(0, y);
554 c &= row[x];
565 const uint64_t* row = this->addr64(0, y);
567 acc &= (row[x] >> 48);