HomeSort by relevance Sort by last modified time
    Searched refs:mInNextChunkOffset (Results 1 - 2 of 2) sorted by null

  /frameworks/base/include/utils/
StreamingZipInflater.h 78 size_t mInNextChunkOffset; // offset from start of blob at which the next input chunk lies
  /frameworks/base/libs/utils/
StreamingZipInflater.cpp 92 mInNextChunkOffset = 0;
191 if (mInNextChunkOffset < mInTotalSize) {
192 size_t toRead = min_of(mInBufSize, mInTotalSize - mInNextChunkOffset);
201 mInNextChunkOffset += didRead;

Completed in 44 milliseconds