Home | History | Annotate | Download | only in native

Lines Matching refs:ENDHDR

55 /* USE_MMAP means mmap the CEN & ENDHDR part of the zip file. */
265 static const jlong END_MAXLEN = 0xFFFF + ENDHDR;
302 const jlong minPos = minHDR - ((jlong)sizeof(buf)-ENDHDR);
305 for (pos = len - sizeof(buf); pos >= minPos; pos -= (sizeof(buf)-ENDHDR)) {
321 for (i = sizeof(buf) - ENDHDR; i >= 0; i--) {
326 ((pos + i + ENDHDR + ENDCOM(buf + i) == len)
329 memcpy(endbuf, buf + i, ENDHDR);
337 if (readFullyAt(zfd, zip->comment, clen, pos + i + ENDHDR)
559 unsigned char endbuf[ENDHDR];
560 jint endhdrlen = ENDHDR;