Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
DGIFImageDecoder.cpp142 bool GIFImageDecoder::haveDecodedRow(size_t frameIndex, GIFRow::const_iterator rowBegin, size_t wid… in haveDecodedRow() argument
171 GIFRow::const_iterator rowEnd = rowBegin + (xEnd - xBegin); in haveDecodedRow()
187 for (; rowBegin != rowEnd; ++rowBegin, ++currentAddress) { in haveDecodedRow()
188 const size_t sourceValue = *rowBegin; in haveDecodedRow()
197 for (; rowBegin != rowEnd; ++rowBegin, ++currentAddress) { in haveDecodedRow()
198 const size_t sourceValue = *rowBegin; in haveDecodedRow()
DGIFImageReader.cpp100 bool GIFLZWContext::outputRow(GIFRow::const_iterator rowBegin) in outputRow() argument
150 if (!m_client->haveDecodedRow(m_frameContext->frameId(), rowBegin, m_frameContext->width(), in outputRow()
287 GIFRow::iterator rowBegin = rowBuffer.begin(); in doLZW() local
288 for (; rowBegin + width <= rowIter; rowBegin += width) { in doLZW()
289 if (!outputRow(rowBegin)) in doLZW()
296 if (rowBegin != rowBuffer.begin()) { in doLZW()
298 const size_t bytesToCopy = rowIter - rowBegin; in doLZW()
299 memcpy(rowBuffer.begin(), rowBegin, bytesToCopy); in doLZW()
DGIFImageDecoder.h64 …bool haveDecodedRow(size_t frameIndex, GIFRow::const_iterator rowBegin, size_t width, size_t rowNu…
DGIFImageReader.h105 bool outputRow(GIFRow::const_iterator rowBegin);