Lines Matching refs:next_screen

726 		orig = orig->next_screen;
727 dest = dest->next_screen;
1473 tmp->next_screen = NULL;
1514 temp_screen->next_screen = Screenalloc(cols);
1515 temp_screen->next_screen->number = i;
1516 temp_screen->next_screen->prev_screen = temp_screen;
1517 temp_screen = temp_screen->next_screen;
1521 temp_screen->next_screen = NULL;
2065 for (i = 0, tmp = window->first_line; i < window->Num_lines; i++, tmp = tmp->next_screen)
2080 tmp = tmp->next_screen;
2094 …value = 0, temp = window->first_line; value < window->Num_lines; value++, temp = temp->next_screen)
2104 … temp = virtual_scr->first_line; value < virtual_scr->Num_lines; value++, temp = temp->next_screen)
2113 …value = 0, temp = curscr->first_line; value < curscr->Num_lines; value++, temp = temp->next_screen)
2161 virtual_line = virtual_line->next_screen;
2202 virtual_line = virtual_line->next_screen;
2203 user_line = user_line->next_screen;
2502 …for (row = 0, tmp = window->first_line; (row < window->Num_lines) && (tmp->next_screen != NULL); r…
2503 tmp = tmp->next_screen;
2505 tmp->prev_screen->next_screen = NULL;
2509 for (row = 0, tmp = window->first_line; (row < window->LY) && (tmp->next_screen != NULL); row++)
2510 tmp = tmp->next_screen;
2513 tmp1->next_screen = tmp->next_screen;
2514 tmp->next_screen = tmp1;
2516 tmp->next_screen->prev_screen = tmp;
2521 tmp->prev_screen->next_screen = tmp1;
2524 tmp1->next_screen = tmp;
2535 tmp1 = tmp1->next_screen;
2554 tmp = tmp->next_screen;
2556 window->first_line = tmp->next_screen;
2558 tmp->prev_screen->next_screen = tmp->next_screen;
2559 if (tmp->next_screen != NULL)
2561 tmp->next_screen->changed = TRUE;
2562 tmp->next_screen->scroll = UP;
2563 tmp->next_screen->prev_screen = tmp->prev_screen;
2568 for (row = 0, tmp = window->first_line; tmp->next_screen != NULL; row++)
2569 tmp = tmp->next_screen;
2572 tmp->next_screen = tmpline;
2573 tmp->next_screen->prev_screen = tmp;
2575 tmp = tmp->next_screen;
2579 tmp->next_screen = NULL;
2584 tmp = tmp->next_screen;
2604 tmp = tmp->next_screen;
2608 tmp = tmp->next_screen;
2835 for (i = 1; (i < window->Num_lines) && (window->first_line->next_screen != NULL); i++)
2837 window->first_line = window->first_line->next_screen;
2982 tmp = tmp->next_screen;
2984 curscr->first_line = curscr->first_line->next_screen;
2989 for (i = 0, tmp = top_of_win; (tmp->next_screen != NULL) && (i < end_row); i++)
2990 tmp = tmp->next_screen;
2992 tmp->prev_screen->next_screen = tmp->next_screen;
2993 if (tmp->next_screen != NULL)
2994 tmp->next_screen->prev_screen = tmp->prev_screen;
3001 for (i = 0, tmp = curscr->first_line; (tmp->next_screen != NULL) && (i < window->SR); i++)
3002 tmp = tmp->next_screen;
3005 tmp = tmp->next_screen;
3007 tmp->prev_screen->next_screen = tmp1;
3010 tmp1->next_screen = tmp;
3013 if (tmp1->next_screen != NULL)
3014 tmp1 = tmp1->next_screen;
3027 …for (i = 0, top_of_win = curscr->first_line; (top_of_win->next_screen != NULL) && (i < window->SR)…
3028 top_of_win = top_of_win->next_screen;
3049 tmp = tmp->next_screen;
3056 curscr->first_line = top_of_win->next_screen;
3058 tmp = tmp->next_screen;
3060 tmp->prev_screen->next_screen = tmp->next_screen;
3061 if (tmp->next_screen != NULL)
3062 tmp->next_screen->prev_screen = tmp->prev_screen;
3063 tmp2 = tmp->next_screen;
3073 for (i = 0, tmp = curscr->first_line; (tmp->next_screen != NULL) && (i < window->SR); i++)
3074 tmp = tmp->next_screen;
3076 for (i = 0, tmp = top_of_win; (i < end_row) && (tmp->next_screen != NULL); i++)
3077 tmp = tmp->next_screen;
3078 tmp1->next_screen = tmp;
3081 tmp1->prev_screen->next_screen = tmp1;
3112 for (y = 0, tmp1 = curscr->first_line; (y < (window->SR+row)) && (tmp1->next_screen != NULL); y++)
3113 tmp1 = tmp1->next_screen;
3317 …= 0, curr = curscr->first_line; from_top < curscr->Num_lines; from_top++, curr = curr->next_screen) in doupdate()
3347 curr = curr->next_screen; in doupdate()
3348 virt = virt->next_screen; in doupdate()
3388 for (tmp_ft = from_top+1, old = curr->next_screen; in doupdate()
3405 bottom++, old1 = old1->next_screen, in doupdate()
3406 new1 = new1->next_screen, in doupdate()
3436 curr = curr->next_screen; in doupdate()
3439 old=old->next_screen, new=new->next_screen, in doupdate()
3448 old = old->next_screen; in doupdate()
3470 bottom++, old1 = old1->next_screen, in doupdate()
3471 new1 = new1->next_screen, in doupdate()
3501 curr = curr->next_screen; in doupdate()
3504 old=old->next_screen, new=new->next_screen, in doupdate()
3517 curr = curr->next_screen; in doupdate()
3518 virt = virt->next_screen; in doupdate()
3529 curr = curr->next_screen; in doupdate()
3531 …line; from_top < window->Num_lines; from_top++, curr = curr->next_screen, virt = virt->next_screen) in doupdate()