Lines Matching defs:this
4 * Permission to use, copy, modify, distribute, and sell this software and its
7 * notice and this permission notice appear in supporting documentation, and
11 * about the suitability of this software for any purpose. It is provided "as
122 RRMonitorGeometryRec this;
143 RRMonitorGetCrtcGeometry(crtc, &this);
146 first = this;
147 *geometry = this;
149 geometry->box.x1 = min(this.box.x1, geometry->box.x1);
150 geometry->box.x2 = max(this.box.x2, geometry->box.x2);
151 geometry->box.y1 = min(this.box.y1, geometry->box.y1);
152 geometry->box.y2 = max(this.box.y2, geometry->box.y2);
159 geometry->mmWidth = (this.box.x2 - this.box.x1) / (first.box.x2 - first.box.x1) * first.mmWidth;
160 geometry->mmHeight = (this.box.y2 - this.box.y1) / (first.box.y2 - first.box.y1) * first.mmHeight;
203 /* Count the number of crtcs in this and any secondary screens */