Lines Matching defs:this
1 /* all driver need this */
55 /* our private data, and two functions to allocate/free this */
505 DisplayModePtr mode,this,last = pScrn->modes;
539 this = pScrn->modes = xf86DuplicateMode(mode);
540 this->next = this;
541 this->prev = this;
543 this = xf86DuplicateMode(mode);
544 this->next = pScrn->modes;
545 this->prev = last;
546 last->next = this;
547 pScrn->modes->prev = this;
549 last = this;