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

/openjdk7/jdk/src/solaris/bin/
H A Djava_md_common.c195 * Upon locating the "best" one, return a fully qualified path to
216 char *best = NULL; local
238 if ((best == NULL) || (JLI_ExactVersionId(
239 dp->d_name + offset, best + best_offset) > 0)) {
240 if (best != NULL)
241 JLI_MemFree(best);
242 best = JLI_StringDup(dp->d_name);
249 if (best == NULL)
252 ret_str = JLI_MemAlloc(JLI_StrLen(dirname) + JLI_StrLen(best) + 2);
253 sprintf(ret_str, "%s/%s", dirname, best);
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DEnvironment.java626 * Returns true if "best" is in every argument at least as good as "other"
628 public boolean isMoreSpecific(MemberDefinition best, MemberDefinition other) argument
630 Type bestType = best.getClassDeclaration().getType();
633 && isApplicable(other, best.getType().getArgumentTypes());
634 // System.out.println("isMoreSpecific: " + best + "/" + other
/openjdk7/hotspot/src/share/vm/opto/
H A Dlcm.cpp133 MachNode *best = NULL; // Best found so far local
303 if( !best ||
304 cfg->_bbs[mach->_idx]->_dom_depth < cfg->_bbs[best->_idx]->_dom_depth ) {
305 best = mach;
311 if( !best ) return;
338 Block *old_block = cfg->_bbs[best->_idx];
339 old_block->find_remove(best);
340 add_inst(best);
341 cfg->_bbs.map(best->_idx,this);
344 if (best
[all...]
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c837 * Upon locating the "best" one, return a fully qualified path to it.
852 char *best = NULL; local
856 * searching for the best available version.
861 if ((best == NULL) || (JLI_ExactVersionId(name, best) > 0)) {
862 if (best != NULL)
863 JLI_MemFree(best);
864 best = JLI_StringDup(name);
869 * Extract "JavaHome" from the "best" registry directory and return
873 if (best
[all...]
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c1569 * Upon locating the "best" one, return a fully qualified path to
1590 char *best = NULL; local
1612 if ((best == NULL) || (JLI_ExactVersionId(
1613 dp->d_name + offset, best + best_offset) > 0)) {
1614 if (best != NULL)
1615 JLI_MemFree(best);
1616 best = JLI_StringDup(dp->d_name);
1623 if (best == NULL)
1626 ret_str = JLI_MemAlloc(strlen(dirname) + strlen(best) + 2);
1627 ret_str = strcat(strcat(strcpy(ret_str, dirname), "/"), best);
[all...]
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c674 * Upon locating the "best" one, return a fully qualified path to it.
689 char *best = NULL; local
693 * searching for the best available version.
698 if ((best == NULL) || (JLI_ExactVersionId(name, best) > 0)) {
699 if (best != NULL)
700 JLI_MemFree(best);
701 best = JLI_StringDup(name);
706 * Extract "JavaHome" from the "best" registry directory and return
710 if (best
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.cpp2299 nmethod* best = NULL; local
2317 if (best == NULL || (osr->comp_level() > best->comp_level())) {
2319 // Found the best possible - return it.
2323 best = osr;
2330 if (best != NULL && best->comp_level() >= comp_level && match_level == false) {
2331 return best;

Completed in 59 milliseconds