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

  /libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java 193 final int trailerSize = 8; // crc (4 bytes) + total out (4 bytes)
194 byte[] b = new byte[trailerSize];
195 int copySize = (size > trailerSize) ? trailerSize : size;
198 readFully(b, copySize, trailerSize - copySize);
  /external/webkit/WebCore/platform/cf/
BinaryPropertyList.cpp 39 static const size_t trailerSize = 32;
491 , m_bufferSize(m_offsetTableStart + m_plan.objectCount() * m_offsetSize + trailerSize)
521 UInt8* trailer = m_buffer + m_bufferSize - trailerSize;

Completed in 88 milliseconds