Lines Matching refs:jlong

42 #include "jlong.h"
117 return (jlong) CreateFile(
189 readFully(ZFILE zfd, void *buf, jlong len) {
193 jlong limit = ((((jlong) 1) << 31) - 1);
217 readFullyAt(ZFILE zfd, void *buf, jlong len, jlong offset)
276 static const jlong END_MAXLEN = 0xFFFF + ENDHDR;
280 static jboolean verifyEND(jzfile *zip, jlong endpos, char *endbuf) {
287 jlong cenpos = endpos - ENDSIZ(endbuf);
288 jlong locpos = cenpos - ENDOFF(endbuf);
304 static jlong
308 jlong pos;
309 const jlong len = zip->len;
311 const jlong minHDR = len - END_MAXLEN > 0 ? len - END_MAXLEN : 0;
312 const jlong minPos = minHDR - (sizeof(buf)-ENDHDR);
318 jlong off = 0;
381 static jlong
382 findEND64(jzfile *zip, void *end64buf, jlong endpos)
385 jlong end64pos;
543 static jlong
547 jlong endpos, end64pos, cenpos, cenlen, cenoff;
554 static jlong pagesize;
555 jlong offset;
610 pagesize = (jlong)sysconf(_SC_PAGESIZE);
732 ZIP_Open_Generic(const char *name, char **pmsg, int mode, jlong lastModified)
758 ZIP_Get_From_Cache(const char *name, char **pmsg, jlong lastModified)
804 ZIP_Put_In_Cache(const char *name, ZFILE zfd, char **pmsg, jlong lastModified)
810 ZIP_Put_In_Cache0(const char *name, ZFILE zfd, char **pmsg, jlong lastModified,
814 jlong len;
929 readCENHeader(jzfile *zip, jlong cenpos, jint bufsize)
950 sequentialAccessReadCENHeader(jzfile *zip, jlong cenpos)
984 jlong locoff;
1247 jlong
1284 ZIP_Read(jzfile *zip, jzentry *entry, jlong pos, void *buf, jint len)
1286 jlong entry_size = (entry->csize != 0) ? entry->csize : entry->size;
1287 jlong start;
1341 jlong pos = 0;
1342 jlong count = entry->csize;
1361 jint n = count > (jlong)sizeof(tmp) ? (jint)sizeof(tmp) : (jint)count;
1425 jlong pos = 0;
1426 jlong size = entry->size;
1429 jlong limit = ((((jlong) 1) << 31) - 1);