HomeSort by relevance Sort by last modified time
    Searched defs:dstRB (Results 1 - 9 of 9) sorted by null

  /external/skia/src/core/
SkSpriteBlitterTemplate.h 33 unsigned dstRB = fDevice->rowBytes();
58 dst = (SK_RESTRICT SkSPRITE_DST_TYPE*)((char*)dst + dstRB);
SkSpriteBlitter_ARGB32.cpp 50 size_t dstRB = fDevice->rowBytes();
57 dst = (SK_RESTRICT uint32_t*)((char*)dst + dstRB);
138 unsigned dstRB = fDevice->rowBytes();
157 dst = (SK_RESTRICT uint32_t*)((char*)dst + dstRB);
185 unsigned dstRB = fDevice->rowBytes();
203 dst = (SK_RESTRICT SkPMColor*)((char*)dst + dstRB);
232 unsigned dstRB = fDevice->rowBytes();
237 dst = (SK_RESTRICT SkPMColor*)((char*)dst + dstRB);
261 unsigned dstRB = fDevice->rowBytes();
266 dst = (SK_RESTRICT SkPMColor*)((char*)dst + dstRB);
    [all...]
SkSpriteBlitter_RGB16.cpp 69 unsigned dstRB = fDevice->rowBytes();
74 dst = (uint16_t*)((char*)dst + dstRB);
296 unsigned dstRB = fDevice->rowBytes();
304 dst = (SK_RESTRICT uint16_t*)((char*)dst + dstRB);
SkBlitter_RGB16.cpp 719 size_t dstRB = fDevice.rowBytes();
730 dst = (uint16_t*)((char*)dst + dstRB);
738 dst = (uint16_t*)((char*)dst + dstRB);
748 dst = (uint16_t*)((char*)dst + dstRB);
755 dst = (uint16_t*)((char*)dst + dstRB);
861 size_t dstRB = fDevice.rowBytes();
868 dst = (uint16_t*)((char*)dst + dstRB);
875 dst = (uint16_t*)((char*)dst + dstRB);
    [all...]
SkScalerContext.cpp 472 int dstRB = origGlyph.rowBytes();
484 //sk_bzero(dst, height * dstRB);
489 dst += dstRB;
  /external/skia/gpu/src/
GrAtlas.cpp 105 const size_t dstRB = dstW * bpp;
106 uint8_t* dst = (uint8_t*)storage.realloc(dstH * dstRB);
107 Gr_bzero(dst, dstRB); // zero top row
108 dst += dstRB;
116 Gr_bzero(dst, dstRB); // zero bottom row
  /external/skia/src/ports/
SkFontHost_FreeType.cpp     [all...]
SkFontHost_win.cpp 569 size_t dstRB = glyph.rowBytes();
573 uint8_t* dst = (uint8_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
575 memcpy(dst, src, dstRB);
577 dst -= dstRB;
582 uint16_t* dst = (uint16_t*)((char*)glyph.fImage + (glyph.fHeight - 1) * dstRB);
588 dst = (uint16_t*)((char*)dst - dstRB);
    [all...]
SkFontHost_mac_coretext.cpp 511 size_t dstRB = glyph.rowBytes();
517 dst = (uint16_t*)((char*)dst + dstRB);
523 size_t dstRB = glyph.rowBytes();
527 dst += dstRB;
    [all...]

Completed in 78 milliseconds