Lines Matching defs:this
1 /* all drivers need this */
52 /* our private data, and two functions to allocate/free this */
332 /* only touch non-PCI devices on this path */
521 DisplayModePtr mode, this, last = pScrn->modes;
554 this = pScrn->modes = xf86DuplicateMode(mode);
555 this->next = this;
556 this->prev = this;
559 this = xf86DuplicateMode(mode);
560 this->next = pScrn->modes;
561 this->prev = last;
562 last->next = this;
563 pScrn->modes->prev = this;
565 last = this;