Home
last modified time | relevance | path

Searched refs:CH (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/native/
Dzip_util.h66 #define CH(b, n) (((unsigned char *)(b))[n]) macro
67 #define SH(b, n) (CH(b, n) | (CH(b, n+1) << 8))
/libcore/ojluni/src/main/java/java/util/zip/
DZipUtils.java198 static final int CH(byte[] b, int n) { in CH() method in ZipUtils
264 …static final int CENVEM_FA(byte[] b, int pos) { return CH(b, pos + 5); } // file attribute compat… in CENVEM_FA()