Searched defs:locoff (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipInfo.java80 if (zfs.readFullyAt(buf, 0, len, locoff(cen, pos)) != len)
85 if (zfs.readFullyAt(buf, 0, len, locoff(cen, pos)) != len)
156 static long locoff(byte[] cen, int pos) { method in class:ZipInfo
157 long locoff = CENOFF(cen, pos);
158 if (locoff == ZIP64_MINVAL) { //ZIP64
177 return locoff;
H A DZipFileSystem.java924 if (e.locoff == -1) {
928 e.locoff = e2.locoff;
931 if (readFullyAt(buf, 0, buf.length, e.locoff) != buf.length)
933 return locpos + e.locoff + LOCHDR + LOCNAM(buf) + LOCEXT(buf);
1142 long locoff = e.locoff; // where to read
1143 e.locoff = written; // update the e.locoff with new value
1155 if (readFullyAt(buf, 0, LOCHDR , locoff) !
1814 long locoff; field in class:ZipFileSystem.Entry
[all...]
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipOutputStream.java60 private long locoff = 0; field in class:ZipOutputStream
269 if (e.size != written - locoff) {
272 " but got " + (written - locoff) + " bytes)");
318 if (written - locoff > entry.size) {
420 locoff = written;
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.c984 jlong locoff; local
1014 locoff = CENOFF(cen);
1015 ze->pos = -(zip->locpos + locoff);
1030 locoff == ZIP64_MAGICVAL) {
1051 if (locoff == ZIP64_MAGICVAL) {
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.hpp227 // \ locoff \ stkoff \ argoff \ monoff \ scloff \ endoff
228 uint locoff() const { return _locoff; } function in class:JVMState
236 int loc_size() const { return stkoff() - locoff(); }
242 bool is_loc(uint i) const { return locoff() <= i && i < stkoff(); }
256 uint debug_start() const; // returns locoff of root caller
358 verify_input(jvms, jvms->locoff() + idx);
359 return in(jvms->locoff() + idx);

Completed in 310 milliseconds