Searched refs:cacheX (Results 1 - 2 of 2) sorted by relevance

/frameworks/rs/
H A DrsFont.cpp125 uint32_t cacheX = 0, cacheY = 0; local
127 for (cacheX = glyph->mBitmapMinX, bX = nPenX; cacheX < endX; cacheX++, bX++) {
133 uint8_t tempCol = cacheBuffer[cacheY * cacheWidth + cacheX];
465 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; local
466 for (cacheX = startX, bX = 0; cacheX < endX; cacheX ++, bX ++) {
469 cacheBuffer[cacheY*cacheWidth + cacheX]
[all...]
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp297 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; local
307 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) {
309 cacheBuffer[row + cacheX] = mGammaTable[tempCol];
353 uint32_t cacheX = 0, cacheY = 0; local
361 cacheX = startX;
369 for (int8_t mask = 7; mask >= 0 && cacheX < endX; mask--) {
370 cacheBuffer[cacheY * cacheWidth + cacheX++] = COLORS[(b >> mask) & 0x1];

Completed in 111 milliseconds