Lines Matching refs:fCurrRLEByte
30 , fCurrRLEByte(0) in SkBmpRLECodec()
159 fCurrRLEByte = 0; in initializeStreamBuffer()
171 const size_t remainingBytes = fRLEBytes - fCurrRLEByte; in checkForMoreData()
178 memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte), remainingBytes); in checkForMoreData()
186 size_t additionalBytes = this->stream()->read(buffer, fCurrRLEByte); in checkForMoreData()
190 fCurrRLEByte = 0; in checkForMoreData()
349 if ((int) fRLEBytes - fCurrRLEByte < 2) { in decodeRows()
360 const uint8_t flag = fStreamBuffer.get()[fCurrRLEByte++]; in decodeRows()
361 const uint8_t task = fStreamBuffer.get()[fCurrRLEByte++]; in decodeRows()
374 if ((int) fRLEBytes - fCurrRLEByte < 2) { in decodeRows()
381 const uint8_t dx = fStreamBuffer.get()[fCurrRLEByte++]; in decodeRows()
382 const uint8_t dy = fStreamBuffer.get()[fCurrRLEByte++]; in decodeRows()
410 if ((int) fRLEBytes - fCurrRLEByte < SkAlign2(rowBytes)) { in decodeRows()
420 SkASSERT(fCurrRLEByte < fRLEBytes); in decodeRows()
421 uint8_t val = fStreamBuffer.get()[fCurrRLEByte++]; in decodeRows()
433 SkASSERT(fCurrRLEByte < fRLEBytes); in decodeRows()
435 y, fStreamBuffer.get()[fCurrRLEByte++]); in decodeRows()
439 SkASSERT(fCurrRLEByte + 2 < fRLEBytes); in decodeRows()
440 uint8_t blue = fStreamBuffer.get()[fCurrRLEByte++]; in decodeRows()
441 uint8_t green = fStreamBuffer.get()[fCurrRLEByte++]; in decodeRows()
442 uint8_t red = fStreamBuffer.get()[fCurrRLEByte++]; in decodeRows()
454 fCurrRLEByte++; in decodeRows()
469 if ((int) fRLEBytes - fCurrRLEByte < 2) { in decodeRows()
478 uint8_t green = fStreamBuffer.get()[fCurrRLEByte++]; in decodeRows()
479 uint8_t red = fStreamBuffer.get()[fCurrRLEByte++]; in decodeRows()