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

/frameworks/base/libs/hwui/font/
H A DFont.cpp116 int32_t bX = 0, bY = 0; local
117 for (cacheX = glyph->mStartX, bX = nPenX; cacheX < endX; cacheX++, bX++) {
120 if (bX < 0 || bY < 0 || bX >= (int32_t) bitmapW || bY >= (int32_t) bitmapH) {
126 bitmap[bY * bitmapW + bX] = tempCol;
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp221 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; local
235 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) {
237 uint8_t tempCol = bitmapBuffer[bY * stride + bX];
242 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) {
244 uint8_t tempCol = bitmapBuffer[bY * stride + bX];
/frameworks/rs/
H A DrsFont.cpp124 int32_t bX = 0, bY = 0; local
125 for (cacheX = glyph->mBitmapMinX, bX = nPenX; cacheX < endX; cacheX++, bX++) {
127 if (bX < 0 || bY < 0 || bX >= (int32_t) bitmapW || bY >= (int32_t) bitmapH) {
132 bitmap[bY * bitmapW + bX] = tempCol;
459 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; local
460 for (cacheX = startX, bX = 0; cacheX < endX; cacheX ++, bX ++) {
462 uint8_t tempCol = bitmapBuffer[bY * bitmap->width + bX];
[all...]

Completed in 45 milliseconds