Home
last modified time | relevance | path

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

/external/skia/src/codec/
DSkBmpRLECodec.cpp430 const size_t alignedRowBytes = SkAlign2(rowBytes); in decodeRLE() local
431 if ((int) fBytesBuffered - fCurrRLEByte < alignedRowBytes) { in decodeRLE()
432 SkASSERT(alignedRowBytes < kBufferSize); in decodeRLE()
433 if (this->checkForMoreData() < alignedRowBytes) { in decodeRLE()
/external/skqp/src/codec/
DSkBmpRLECodec.cpp427 const size_t alignedRowBytes = SkAlign2(rowBytes); in decodeRLE() local
428 if ((int) fBytesBuffered - fCurrRLEByte < alignedRowBytes) { in decodeRLE()
429 SkASSERT(alignedRowBytes < kBufferSize); in decodeRLE()
430 if (this->checkForMoreData() < alignedRowBytes) { in decodeRLE()
/external/skqp/src/image/
DSkSurface_Raster.cpp56 size_t alignedRowBytes = rowBytes >> shift << shift; in SkSurfaceValidateRasterInfo() local
57 if (alignedRowBytes != rowBytes) { in SkSurfaceValidateRasterInfo()
/external/skia/include/core/
DSkImageInfo.h694 size_t alignedRowBytes = rowBytes >> shift << shift; in validRowBytes() local
695 return alignedRowBytes == rowBytes; in validRowBytes()