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

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCoding.java165 private static long codeRangeLong(int B, int H, int nMax) { argument
166 // Code range for a all (B,H) codes of length <=nMax (<=B).
169 assert(nMax >= 0 && nMax <= B);
172 if (nMax == 0) return 0; // no codes of zero length
177 for (int n = 1; n <= nMax; n++) {
182 if (nMax == B)
186 /** Largest int representable by (B,H,S) in up to nMax bytes. */
187 public static int codeMax(int B, int H, int S, int nMax) { argument
189 long range = codeRangeLong(B, H, nMax);
209 codeMin(int B, int H, int S, int nMax) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscnvrt.c1035 // Get information about available intents. nMax is the maximum space for the supplied "Codes"
1037 // than nMax, although the matrices are not populated beyond this level.
1038 cmsUInt32Number CMSEXPORT cmsGetSupportedIntents(cmsUInt32Number nMax, cmsUInt32Number* Codes, char** Descriptions) argument
1045 if (nIntents < nMax) {

Completed in 1999 milliseconds