Searched defs:rowBegin (Results 1 - 2 of 2) sorted by relevance

/external/skia/third_party/gif/
H A DSkGifImageReader.cpp100 bool SkGIFLZWContext::outputRow(const unsigned char* rowBegin) argument
151 if (!m_client->haveDecodedRow(m_frameContext->frameId(), rowBegin,
288 unsigned char* rowBegin = rowBuffer.begin(); local
289 for (; rowBegin + width <= rowIter; rowBegin += width) {
290 if (!outputRow(rowBegin))
297 if (rowBegin != rowBuffer.begin()) {
299 const size_t bytesToCopy = rowIter - rowBegin;
300 memcpy(&rowBuffer.front(), rowBegin, bytesToCopy);
/external/skia/src/codec/
H A DSkGifCodec.cpp523 bool SkGifCodec::haveDecodedRow(size_t frameIndex, const unsigned char* rowBegin, argument
609 this->applyXformRow(dstInfo, dstLine, rowBegin);
612 this->applyXformRow(dstInfo, fTmpBuffer.get(), rowBegin);

Completed in 143 milliseconds