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

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCoding.java666 static private final byte[] byteBitWidths = new byte[0x100]; field in class:Coding
668 for (int b = 0; b < byteBitWidths.length; b++) {
669 byteBitWidths[b] = (byte) ceil_lg2(b + 1);
683 if (lo < byteBitWidths.length)
684 return byteBitWidths[lo];
696 w += byteBitWidths[lo];

Completed in 32 milliseconds