Searched refs:bY (Results 1 - 3 of 3) sorted by relevance

/frameworks/rs/
H A DrsFont.cpp126 int32_t bX = 0, bY = 0; local
128 for (cacheY = glyph->mBitmapMinY, bY = nPenY; cacheY < endY; cacheY++, bY++) {
129 if (bX < 0 || bY < 0 || bX >= (int32_t) bitmapW || bY >= (int32_t) bitmapH) {
134 bitmap[bY * bitmapW + bX] = tempCol;
465 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; local
467 for (cacheY = startY, bY = 0; cacheY < endY; cacheY ++, bY ++) {
468 uint8_t tempCol = bitmapBuffer[bY * bitma
[all...]
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp297 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; local
304 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) {
308 uint8_t tempCol = bitmapBuffer[bY + bX];
314 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) {
316 memcpy(&cacheBuffer[row + startX], &bitmapBuffer[bY], glyph.fWidth);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardAffordanceHelper.java491 float bY = lastY - mInitialTouchY;
492 float bLen = (float) Math.hypot(bX, bY);
494 float projectedVelocity = (aX * bX + aY * bY) / bLen;

Completed in 120 milliseconds