Lines Matching refs:Rows
458 if (row >= Rows) in screen_line()
459 row = Rows - 1; in screen_line()
1089 if (cmdline_row == Rows - 1) in win_redr_status_matches()
1091 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL); in win_redr_status_matches()
1285 row = Rows - 1; in win_redr_custom()
2506 if (row == Rows - 1) // overwritten the command line in screen_fill()
2609 && Rows == screen_Rows in screenalloc()
2614 || Rows == 0 in screenalloc()
2667 new_ScreenLines = LALLOC_MULT(schar_T, (Rows + 1) * Columns); in screenalloc()
2671 new_ScreenLinesUC = LALLOC_MULT(u8char_T, (Rows + 1) * Columns); in screenalloc()
2674 (Rows + 1) * Columns); in screenalloc()
2677 new_ScreenLines2 = LALLOC_MULT(schar_T, (Rows + 1) * Columns); in screenalloc()
2678 new_ScreenAttrs = LALLOC_MULT(sattr_T, (Rows + 1) * Columns); in screenalloc()
2679 new_LineOffset = LALLOC_MULT(unsigned, Rows); in screenalloc()
2680 new_LineWraps = LALLOC_MULT(char_u, Rows); in screenalloc()
2683 new_popup_mask = LALLOC_MULT(short, Rows * Columns); in screenalloc()
2684 new_popup_mask_next = LALLOC_MULT(short, Rows * Columns); in screenalloc()
2685 new_popup_transparent = LALLOC_MULT(char, Rows * Columns); in screenalloc()
2739 do_outofmem_msg((long_u)((Rows + 1) * Columns)); in screenalloc()
2764 for (new_row = 0; new_row < Rows; ++new_row) in screenalloc()
2793 old_row = new_row + (screen_Rows - Rows); in screenalloc()
2830 current_ScreenLine = new_ScreenLines + Rows * Columns; in screenalloc()
2833 vim_memset(new_popup_mask, 0, Rows * Columns * sizeof(short)); in screenalloc()
2834 vim_memset(new_popup_transparent, 0, Rows * Columns * sizeof(char)); in screenalloc()
2863 screen_Rows = Rows; in screenalloc()
2873 && old_Rows != Rows) in screenalloc()
2875 gui_redraw_block(0, 0, (int)Rows - 1, (int)Columns - 1, 0); in screenalloc()
2879 if (msg_row >= Rows) // Rows got smaller in screenalloc()
2880 msg_row = Rows - 1; // put cursor at last row in screenalloc()
2881 else if (Rows > old_Rows) // Rows got bigger in screenalloc()
2882 msg_row += Rows - old_Rows; // put cursor in same place in screenalloc()
2962 for (i = 0; i < Rows; ++i) in screenclear2()
2977 for (i = 0; i < Rows; ++i) in screenclear2()
3419 line_count, (int)Rows, FALSE, 0, NULL) == OK) in win_ins_lines()
3433 if (lastrow > Rows) in win_ins_lines()
3434 lastrow = Rows; in win_ins_lines()
3440 if (screen_ins_lines(0, W_WINROW(wp) + row, line_count, (int)Rows, 0, NULL) in win_ins_lines()
3484 (int)Rows, FALSE, clear_attr, NULL) == FAIL) in win_del_lines()
3491 if (wp->w_next || wp->w_status_height || cmdline_row < Rows - 1) in win_del_lines()
3494 line_count, (int)Rows, clear_attr, NULL) == FAIL) in win_del_lines()
3534 if (mayclear && Rows - line_count < 5 && wp->w_width == Columns) in win_do_lines()
4160 if (clear_cmdline && cmdline_row < Rows - 1) in showmode()
4189 length = (Rows - msg_row) * Columns - 3; in showmode()
4326 msg_row = Rows - 1; in msg_pos_mode()