Home
last modified time | relevance | path

Searched refs:lastScanline (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
DBitmap.java943 int lastScanline = offset + (height - 1) * stride; in createBitmap() local
945 if (offset < 0 || (offset + width > length) || lastScanline < 0 || in createBitmap()
946 (lastScanline + width > length)) { in createBitmap()
1487 int lastScanline = offset + (height - 1) * stride; in checkPixelsAccess() local
1490 || lastScanline < 0 in checkPixelsAccess()
1491 || (lastScanline + width > length)) { in checkPixelsAccess()
DCanvas.java1472 int lastScanline = offset + (height - 1) * stride; in drawBitmap() local
1474 if (offset < 0 || (offset + width > length) || lastScanline < 0 in drawBitmap()
1475 || (lastScanline + width > length)) { in drawBitmap()