Lines Matching refs:SH

192     static final int SH(byte[] b, int n) {
197 return ((SH(b, n)) | (SH(b, n + 2) << 16)) & 0xffffffffL;
210 static final int LOCVER(byte[] b) { return SH(b, 4); } // version needed to extract
211 static final int LOCFLG(byte[] b) { return SH(b, 6); } // general purpose bit flags
212 static final int LOCHOW(byte[] b) { return SH(b, 8); } // compression method
217 static final int LOCNAM(byte[] b) { return SH(b, 26);} // filename length
218 static final int LOCEXT(byte[] b) { return SH(b, 28);} // extra field length
226 static final int ENDSUB(byte[] b) { return SH(b, 8); } // number of entries on this disk
227 static final int ENDTOT(byte[] b) { return SH(b, 10);} // total number of entries
230 static final int ENDCOM(byte[] b) { return SH(b, 20);} // size of zip file comment
231 static final int ENDCOM(byte[] b, int off) { return SH(b, off + 20);}
242 static final int CENVEM(byte[] b, int pos) { return SH(b, pos + 4); }
243 static final int CENVER(byte[] b, int pos) { return SH(b, pos + 6); }
244 static final int CENFLG(byte[] b, int pos) { return SH(b, pos + 8); }
245 static final int CENHOW(byte[] b, int pos) { return SH(b, pos + 10);}
250 static final int CENNAM(byte[] b, int pos) { return SH(b, pos + 28);}
251 static final int CENEXT(byte[] b, int pos) { return SH(b, pos + 30);}
252 static final int CENCOM(byte[] b, int pos) { return SH(b, pos + 32);}
253 static final int CENDSK(byte[] b, int pos) { return SH(b, pos + 34);}
254 static final int CENATT(byte[] b, int pos) { return SH(b, pos + 36);}