Home | History | Annotate | Download | only in ports

Lines Matching refs:dstRB

1045     const size_t dstRB = (width + 7) >> 3;
1046 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1081 dst -= dstRB;
1088 const size_t dstRB = glyph.rowBytes();
1090 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1097 dst -= dstRB;
1104 const size_t dstRB = glyph.rowBytes();
1106 uint16_t* SK_RESTRICT dst = (uint16_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1113 dst = (uint16_t*)((char*)dst - dstRB);
1120 const size_t dstRB = glyph.rowBytes();
1122 uint32_t* SK_RESTRICT dst = (uint32_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1129 dst = (uint32_t*)((char*)dst - dstRB);
1183 size_t dstRB = glyph.rowBytes();
1186 uint8_t* dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1188 memcpy(dst, src, dstRB);
1190 dst -= dstRB;