Lines Matching refs:first_line

709 	orig = origin->first_line;
710 dest = destination->first_line;
1506 Ntemp->first_line = temp_screen = Screenalloc(cols);
1507 Ntemp->first_line->number = 0;
1510 Ntemp->line_array[0] = Ntemp->first_line;
1520 Ntemp->first_line->prev_screen = NULL;
2065 for (i = 0, tmp = window->first_line; i < window->Num_lines; i++, tmp = tmp->next_screen)
2079 for (row = 0, tmp = window->first_line; row < window->LY; row++)
2094 for (value = 0, temp = window->first_line; value < window->Num_lines; value++, temp = temp->next_screen)
2104 for (value = 0, temp = virtual_scr->first_line; value < virtual_scr->Num_lines; value++, temp = temp->next_screen)
2113 for (value = 0, temp = curscr->first_line; value < curscr->Num_lines; value++, temp = temp->next_screen)
2130 for (line_counter = 0, user_line = window->first_line;
2150 user_line = window->first_line;
2151 virtual_line = virtual_scr->first_line;
2502 for (row = 0, tmp = window->first_line; (row < window->Num_lines) && (tmp->next_screen != NULL); row++)
2509 for (row = 0, tmp = window->first_line; (row < window->LY) && (tmp->next_screen != NULL); row++)
2529 window->first_line = tmp1;
2531 for (row = 0, tmp1 = window->first_line;
2553 for (row = 0, tmp = window->first_line; row < window->LY; row++)
2556 window->first_line = tmp->next_screen;
2568 for (row = 0, tmp = window->first_line; tmp->next_screen != NULL; row++)
2581 for (row = 0, tmp = window->first_line; row < window->Num_lines; row++)
2589 clear_line(window->first_line, 0, window->Num_cols);
2603 for (row = 0, tmp = window->first_line; row < window->LY; row++)
2835 for (i = 1; (i < window->Num_lines) && (window->first_line->next_screen != NULL); i++)
2837 window->first_line = window->first_line->next_screen;
2838 free(window->first_line->prev_screen->row);
2839 free(window->first_line->prev_screen->attributes);
2840 free(window->first_line->prev_screen);
2844 if (window->first_line != NULL)
2846 free(window->first_line->row);
2847 free(window->first_line->attributes);
2848 free(window->first_line);
2981 for (i = 0, tmp = curscr->first_line; i < window->SR; i++)
2984 curscr->first_line = curscr->first_line->next_screen;
3001 for (i = 0, tmp = curscr->first_line; (tmp->next_screen != NULL) && (i < window->SR); i++)
3012 curscr->first_line = tmp1;
3027 for (i = 0, top_of_win = curscr->first_line; (top_of_win->next_screen != NULL) && (i < window->SR); i++)
3045 tmp = curscr->first_line;
3056 curscr->first_line = top_of_win->next_screen;
3073 for (i = 0, tmp = curscr->first_line; (tmp->next_screen != NULL) && (i < window->SR); i++)
3100 curscr->first_line = top_of_win = tmp2;
3112 for (y = 0, tmp1 = curscr->first_line; (y < (window->SR+row)) && (tmp1->next_screen != NULL); y++)
3317 for (from_top = 0, curr = curscr->first_line; from_top < curscr->Num_lines; from_top++, curr = curr->next_screen)
3336 top_of_win = curscr->first_line;
3338 for (from_top = 0, curr = top_of_win, virt = window->first_line;
3352 virt = window->first_line;
3433 top_of_win = curscr->first_line;
3498 top_of_win = curscr->first_line;
3528 for (from_top = 0, curr = curscr->first_line; from_top < window->SR; from_top++)
3531 for (from_top = 0, curr = top_of_win, virt = window->first_line; from_top < window->Num_lines; from_top++, curr = curr->next_screen, virt = virt->next_screen)