Home
last modified time | relevance | path

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

/external/skia/src/codec/
DSkBmpRLECodec.cpp438 const size_t alignedRowBytes = SkAlign2(rowBytes); in decodeRLE() local
439 if ((int) fBytesBuffered - fCurrRLEByte < alignedRowBytes) { in decodeRLE()
440 SkASSERT(alignedRowBytes < kBufferSize); in decodeRLE()
441 if (this->checkForMoreData() < alignedRowBytes) { in decodeRLE()
/external/skia/src/image/
DSkSurface_Raster.cpp88 size_t alignedRowBytes = rowBytes >> shift << shift; in Valid() local
89 if (alignedRowBytes != rowBytes) { in Valid()