Searched refs:longest (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DContextList.java48 * Context with longest prefix matches (currently case-sensitive)
56 String longest = "";
68 if (cpath.length() > longest.length()) {
69 longest = cpath;
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/
H A DJ2DAnalyzer.java613 private long longest; field in class:J2DAnalyzer.ResultHolder
708 longest = shortest = ms;
710 if (longest < ms) longest = ms;
718 return calcPercent(shortest, longest - shortest);
730 divisor = longest;
736 divisor = (total - longest - shortest);
760 scores.add(new Double(score / longest));
767 elimlong = longest;
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPopulationCoding.java86 Coding longest = BandStructure.UNSIGNED5.setL(L);
87 if (!longest.canRepresentUnsigned(fVlen))
89 Coding tc = longest;
90 for (Coding shorter = longest; ; ) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp2248 int longest = 0; local
2259 if (count > longest) longest = count;
2262 tty->print_cr("AdapterHandlerTable: empty %d longest %d total %d average %f",
2263 empty, longest, total, total / (double)nonempty);

Completed in 49 milliseconds