Lines Matching defs:this
7 * this code was contributed to The NetBSD Foundation by Michael Lorenz
13 * notice, this list of conditions and the following disclaimer.
15 * notice, this list of conditions and the following disclaimer in the
18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS
27 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
47 const struct videomode *this, *best = NULL;
53 this = &videomode_list[i];
54 if ((this->hdisplay != width) || (this->vdisplay != height) ||
55 (this->dot_clock > dotclock))
58 if (this->dot_clock > best->dot_clock)
59 best = this;
61 best = this;
72 const struct videomode *this, *best = NULL;
79 this = &videomode_list[i];
80 mref = this->dot_clock * 1000 / (this->htotal * this->vtotal);
82 if ((this->hdisplay != width) || (this->vdisplay != height))
84 DPRINTF("%s in %d hz, diff %d\n", this->name, mref, diff);
87 best = this;
91 best = this;
116 * (within 12.5%) as the same for this purpose.
142 * the first mode of this size.