Lines Matching refs:next
46 struct _SDL_TimerID *next;
107 SDL_TimerID t, prev, next;
113 for ( prev = NULL, t = SDL_timers; t; t = next ) {
116 next = t->next;
147 prev->next = next;
149 SDL_timers = next;
174 t->next = SDL_timers;
214 for (t = SDL_timers; t; prev=t, t = t->next ) {
217 prev->next = t->next;
219 SDL_timers = t->next;
258 SDL_timers = SDL_timers->next;