Lines Matching refs:dstRB
1146 const size_t dstRB = (width + 7) >> 3; in rgb_to_bw() local
1147 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB); in rgb_to_bw()
1182 dst -= dstRB; in rgb_to_bw()
1187 uint8_t* last = (uint8_t*)((char*)glyph.fImage + glyph.fHeight * dstRB - 1); in rgb_to_bw()
1197 const size_t dstRB = glyph.rowBytes(); in rgb_to_a8() local
1199 uint8_t* SK_RESTRICT dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB); in rgb_to_a8()
1209 dst -= dstRB; in rgb_to_a8()
1216 const size_t dstRB = glyph.rowBytes(); in rgb_to_lcd16() local
1218 uint16_t* SK_RESTRICT dst = (uint16_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB); in rgb_to_lcd16()
1225 dst = (uint16_t*)((char*)dst - dstRB); in rgb_to_lcd16()
1273 size_t dstRB = glyph.rowBytes(); in generateImage() local
1276 uint8_t* dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB); in generateImage()
1278 memcpy(dst, src, dstRB); in generateImage()
1280 dst -= dstRB; in generateImage()
1286 uint8_t* last = (uint8_t*)((char*)glyph.fImage + glyph.fHeight * dstRB - 1); in generateImage()