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

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCoding.java364 private final int[] byteMax; // largest repr. value, given # bytes field in class:Coding
380 this.byteMax = new int[B];
384 byteMax[nMax-1] = codeMax(B, H, S, nMax);
606 public int byteMax(int b) { return byteMax[b-1]; } method in class:Coding
785 if (value <= byteMax[n]) return n+1;
813 int lmax = byteMax[n-1];
896 int range_n = saturate32((long)byteMax[n-1] - byteMin[n-1] + 1);

Completed in 593 milliseconds