Lines Matching defs:best
47 const struct videomode *this, *best = NULL;
57 if (best != NULL) {
58 if (this->dot_clock > best->dot_clock)
59 best = this;
61 best = this;
63 if (best != NULL)
64 DPRINTF("found %s\n", best->name);
66 return best;
72 const struct videomode *this, *best = NULL;
85 if (best != NULL) {
87 best = this;
91 best = this;
95 if (best != NULL)
96 DPRINTF("found %s %d\n", best->name, best->dot_clock);
98 return best;