Searched refs:fVlen (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPopulationCoding.java46 int fVlen; // inclusive max index field in class:PopulationCoding
55 public void setFavoredValues(int[] fValues, int fVlen) { argument
61 this.fVlen = fVlen;
76 tokenCoding = fitTokenCoding(fVlen, L);
81 public static Coding fitTokenCoding(int fVlen, int L) { argument
82 // Find the smallest B s.t. (B,H,0) covers fVlen.
83 if (fVlen < 256)
87 if (!longest.canRepresentUnsigned(fVlen))
88 return null; // failure; L is too sharp and fVlen to
[all...]
H A DCodingChooser.java823 int fVlen;
825 fVlen = bestPopFVC;
826 assert(tc.umax() >= fVlen);
827 assert(tc.B() == 1 || tc.setB(tc.B()-1).umax() < fVlen);
829 fVlen = Math.min(tc.umax(), targetHighFVC);
830 if (fVlen < targetLowFVC)
832 if (fVlen == bestPopFVC)
838 pop.setFavoredValues(allFavoredValues, fVlen);
874 int fVlen = pop.fVlen;
[all...]

Completed in 158 milliseconds