Home
last modified time | relevance | path

Searched refs:commentSize (Results 1 – 4 of 4) sorted by relevance

/external/turbine/java/com/google/turbine/zip/
DZip.java169 int commentSize = 0; in ZipIterable() local
180 commentSize = (int) ((size - start) - ENDHDR) - index; in ZipIterable()
190 if (commentSize != actualCommentSize) { in ZipIterable()
193 "zip file comment length was %d, expected %d", commentSize, actualCommentSize)); in ZipIterable()
/external/python/cpython2/Lib/
Dzipfile.py249 commentSize = endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file
250 comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize]
/external/chromium-trace/catapult/third_party/zipfile/
Dzipfile_2_7_13.py249 commentSize = endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file
250 comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize]
/external/python/cpython3/Lib/
Dzipfile.py300 commentSize = endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file
301 comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize]