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

  /frameworks/base/libs/utils/
StreamingZipInflater.cpp 46 mOutBuf = new uint8_t[mOutBufSize];
64 mOutBuf = new uint8_t[mOutBufSize];
76 delete [] mOutBuf;
87 mInflateState.next_out = (Bytef*) mOutBuf;
108 * output data in mOutBuf.
125 if (outBuf != NULL) memcpy(dest, mOutBuf + mOutDeliverable, deliverable);
151 mInflateState.next_out = (Bytef*) mOutBuf;
  /frameworks/base/include/utils/
StreamingZipInflater.h 63 uint8_t* mOutBuf; // output buf for decompressed bytes
64 size_t mOutBufSize; // allocated size of mOutBuf
69 size_t mOutLastDecoded; // last decoded byte + 1 in mOutbuf
70 size_t mOutDeliverable; // next undelivered byte of decoded output in mOutBuf

Completed in 16 milliseconds