Searched defs:cacheX (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/libs/hwui/font/
H A DFont.cpp115 uint32_t cacheX = 0, cacheY = 0; local
117 for (cacheX = glyph->mStartX, bX = nPenX; cacheX < endX; cacheX++, bX++) {
125 uint8_t tempCol = cacheBuffer[cacheY * cacheWidth + cacheX];
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp221 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; local
223 for (cacheX = startX - TEXTURE_BORDER_SIZE; cacheX < endX + TEXTURE_BORDER_SIZE; cacheX++) {
224 cacheBuffer[(startY - TEXTURE_BORDER_SIZE) * cacheWidth + cacheX] = 0;
225 cacheBuffer[(endY + TEXTURE_BORDER_SIZE - 1) * cacheWidth + cacheX] = 0;
235 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) {
238 cacheBuffer[cacheY * cacheWidth + cacheX]
[all...]
/frameworks/rs/
H A DrsFont.cpp123 uint32_t cacheX = 0, cacheY = 0; local
125 for (cacheX = glyph->mBitmapMinX, bX = nPenX; cacheX < endX; cacheX++, bX++) {
131 uint8_t tempCol = cacheBuffer[cacheY * cacheWidth + cacheX];
459 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; local
460 for (cacheX = startX, bX = 0; cacheX < endX; cacheX ++, bX ++) {
463 cacheBuffer[cacheY*cacheWidth + cacheX]
[all...]

Completed in 1773 milliseconds