Lines Matching refs:rowIter
207 if (rowIter == rowBuffer.end()) in doLZW()
245 rowIter += codeLength; in doLZW()
251 rowIter += codeLength; in doLZW()
252 *--rowIter = firstchar; in doLZW()
262 *--rowIter = suffix[code]; in doLZW()
266 *--rowIter = firstchar = suffix[code]; in doLZW()
285 rowIter += codeLength; in doLZW()
289 for (; rowBegin + width <= rowIter; rowBegin += width) { in doLZW()
299 const size_t bytesToCopy = rowIter - rowBegin; in doLZW()
301 rowIter = rowBuffer.begin() + bytesToCopy; in doLZW()
986 rowIter = rowBuffer.begin(); in prepareToDecode()