Home
last modified time | relevance | path

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

/external/skia/src/codec/
DSkBmpRLECodec.cpp28 , fRLEBytes(RLEBytes) in SkBmpRLECodec()
150 size_t totalBytes = this->stream()->read(fStreamBuffer.get(), fRLEBytes); in initializeStreamBuffer()
151 if (totalBytes < fRLEBytes) { in initializeStreamBuffer()
152 fRLEBytes = totalBytes; in initializeStreamBuffer()
155 if (fRLEBytes == 0) { in initializeStreamBuffer()
171 const size_t remainingBytes = fRLEBytes - fCurrRLEByte; in checkForMoreData()
194 fRLEBytes = remainingBytes + additionalBytes; in checkForMoreData()
195 return fRLEBytes; in checkForMoreData()
287 fRLEBytes = fOrigRLEBytes; in prepareToDecode()
349 if ((int) fRLEBytes - fCurrRLEByte < 2) { in decodeRows()
[all …]
DSkBmpRLECodec.h103 size_t fRLEBytes; variable