HomeSort by relevance Sort by last modified time
    Searched refs:new_rows (Results 1 - 5 of 5) sorted by null

  /external/libvterm/src/
screen.c 80 static ScreenCell *realloc_buffer(VTermScreen *screen, ScreenCell *buffer, int new_rows, int new_cols)
82 ScreenCell *new_buffer = vterm_allocator_malloc(screen->vt, sizeof(ScreenCell) * new_rows * new_cols);
84 for(int row = 0; row < new_rows; row++) {
480 static int resize(int new_rows, int new_cols, VTermPos *delta, void *user)
489 if(!is_altscreen && new_rows < old_rows) {
493 for(pos.row = old_rows - 1; pos.row >= new_rows; pos.row--)
498 if(first_blank_row > new_rows) {
505 scrollrect(rect, first_blank_row - new_rows, 0, user);
508 delta->row -= first_blank_row - new_rows;
512 screen->buffers[0] = realloc_buffer(screen, screen->buffers[0], new_rows, new_cols)
    [all...]
  /external/ceres-solver/internal/ceres/
triplet_sparse_matrix.cc 113 int* new_rows = new int[new_max_num_nonzeros]; local
118 new_rows[i] = rows_[i];
123 rows_.reset(new_rows);
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 717 const Index new_rows = other.rows() - _this.rows(); local
720 if (new_rows>0)
721 _this.bottomRightCorner(new_rows, other.cols()) = other.bottomRows(new_rows);
748 const Index new_rows = Derived::RowsAtCompileTime==1 ? 1 : size; local
759 const Index new_rows = Derived::RowsAtCompileTime==1 ? 1 : other.rows(); local
    [all...]
  /external/opencv/cxcore/src/
cxarray.cpp 2937 int total_width, new_rows, cn; local
    [all...]
  /external/opencv/cxcore/include/
cxcore.h 412 int new_cn, int new_rows CV_DEFAULT(0) );
    [all...]

Completed in 1663 milliseconds