HomeSort by relevance Sort by last modified time
    Searched refs:cacheY (Results 1 - 3 of 3) sorted by null

  /frameworks/base/libs/hwui/
FontRenderer.cpp 304 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0;
311 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) {
312 row = cacheY * cacheWidth;
321 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) {
322 row = cacheY * cacheWidth;
360 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0
    [all...]
  /frameworks/rs/
rsFont.cpp 125 uint32_t cacheX = 0, cacheY = 0;
128 for (cacheY = glyph->mBitmapMinY, bY = nPenY; cacheY < endY; cacheY++, bY++) {
133 uint8_t tempCol = cacheBuffer[cacheY * cacheWidth + cacheX];
465 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0;
467 for (cacheY = startY, bY = 0; cacheY < endY; cacheY ++, bY ++) {
469 cacheBuffer[cacheY*cacheWidth + cacheX] = tempCol
    [all...]
  /frameworks/base/libs/hwui/font/
Font.cpp 223 for (uint32_t cacheY = startY, bitmapY = dstY * bitmapWidth; cacheY < endY;
224 cacheY += cacheWidth, bitmapY += bitmapWidth) {
225 memcpy(&bitmap[bitmapY + dstX], &cacheBuffer[cacheY + glyph->mStartX], glyph->mBitmapWidth);

Completed in 195 milliseconds