Home
last modified time | relevance | path

Searched refs:rowIter (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DUnpackRowLength.cpp59 std::vector<GLubyte>::iterator rowIter = buf.begin() + y * rowLength * 4; in testRowLength() local
60 std::fill(rowIter, rowIter + texSize * 4, static_cast<GLubyte>(255u)); in testRowLength()
61 std::fill(rowIter + texSize * 4, rowIter + rowLength * 4, static_cast<GLubyte>(0u)); in testRowLength()
/third_party/skia/third_party/externals/libgifcodec/
DSkGifImageReader.cpp215 if (rowIter == rowBuffer.end()) in doLZW()
281 unsigned char* p = rowIter + remaining; in doLZW()
285 rowIter += suffixLength[code]; in doLZW()
298 *rowIter++ = firstchar; in doLZW()
328 for (; rowBegin + width <= rowIter; rowBegin += width) { in doLZW()
337 const size_t bytesToCopy = rowIter - rowBegin; in doLZW()
339 rowIter = rowBuffer.begin() + bytesToCopy; in doLZW()
947 rowIter = rowBuffer.begin(); in prepareToDecode()
DSkGifImageReader.h108 , rowIter(nullptr) in SkGIFLZWContext()
136 unsigned char* rowIter; variable