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

/frameworks/base/libs/rs/
H A DrsFont.cpp123 int32_t bX = 0, bY = 0; local
124 for (cacheX = glyph->mBitmapMinX, bX = nPenX; cacheX < endX; cacheX++, bX++) {
126 if (bX < 0 || bY < 0 || bX >= (int32_t) bitmapW || bY >= (int32_t) bitmapH) {
131 bitmap[bY * bitmapW + bX] = tempCol;
458 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; local
459 for (cacheX = startX, bX = 0; cacheX < endX; cacheX ++, bX ++) {
461 uint8_t tempCol = bitmapBuffer[bY * bitmap->width + bX];
[all...]
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp125 int32_t bX = 0, bY = 0; local
126 for (cacheX = glyph->mStartX, bX = nPenX; cacheX < endX; cacheX++, bX++) {
128 if (bX < 0 || bY < 0 || bX >= (int32_t) bitmapW || bY >= (int32_t) bitmapH) {
133 bitmap[bY * bitmapW + bX] = tempCol;
454 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; local
455 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) {
457 uint8_t tempCol = bitmapBuffer[bY * stride + bX];
[all...]

Completed in 66 milliseconds