Home | History | Annotate | Download | only in ports

Lines Matching defs:dstRB

1222     const size_t dstRB = (width + 7) >> 3;
1223 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1258 dst -= dstRB;
1263 uint8_t* last = (uint8_t*)((char*)glyph.fImage + glyph.fHeight * dstRB - 1);
1273 const size_t dstRB = glyph.rowBytes();
1275 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1285 dst -= dstRB;
1292 const size_t dstRB = glyph.rowBytes();
1294 uint16_t* SK_RESTRICT dst = (uint16_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1301 dst = (uint16_t*)((char*)dst - dstRB);
1308 const size_t dstRB = glyph.rowBytes();
1310 uint32_t* SK_RESTRICT dst = (uint32_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1317 dst = (uint32_t*)((char*)dst - dstRB);
1370 size_t dstRB = glyph.rowBytes();
1373 uint8_t* dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
1375 memcpy(dst, src, dstRB);
1377 dst -= dstRB;
1383 uint8_t* last = (uint8_t*)((char*)glyph.fImage + glyph.fHeight * dstRB - 1);