Lines Matching refs:dstRB
1060 const size_t dstRB = glyph.rowBytes();
1062 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.height() - 1) * dstRB);
1072 dst -= dstRB;
1080 const size_t dstRB = glyph.rowBytes();
1082 uint16_t* SK_RESTRICT dst = (uint16_t*)((char*)glyph.fImage + (glyph.height() - 1) * dstRB);
1089 dst = (uint16_t*)((char*)dst - dstRB);
1136 size_t dstRB = glyph.rowBytes();
1139 uint8_t* dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1141 memcpy(dst, src, dstRB);
1143 dst -= dstRB;
1149 uint8_t* last = (uint8_t*)((char*)glyph.fImage + glyph.height() * dstRB - 1);