HomeSort by relevance Sort by last modified time
    Searched refs:start_row (Results 1 - 25 of 40) sorted by null

1 2

  /external/libvterm/src/
rect.h 6 #define ARGSrect(r) (r).start_row, (r).start_col, (r).end_row, (r).end_col
11 if(dst->start_row > src->start_row) dst->start_row = src->start_row;
20 if(dst->start_row < bounds->start_row) dst->start_row = bounds->start_row;
25 if(dst->end_row < dst->start_row) dst->end_row = dst->start_row
    [all...]
screen.c 50 /* start_row == -1 => no damage */
116 if(rect.end_row > rect.start_row + 1) {
121 else if(screen->damaged.start_row == -1) {
126 else if(rect.start_row == screen->damaged.start_row) {
144 if(screen->damaged.start_row == -1)
163 .start_row = 0,
192 .start_row = pos.row,
212 dest.start_row == 0 && dest.start_col == 0 && // starts top-left corner
216 for(pos.row = 0; pos.row < src.start_row; pos.row++)
    [all...]
vterm.c 269 if(abs(downward) >= rect.end_row - rect.start_row ||
299 dest.start_row = rect.start_row;
301 src.start_row = rect.start_row + downward;
306 dest.start_row = rect.start_row + upward;
308 src.start_row = rect.start_row;
316 rect.start_row = rect.end_row - downward
    [all...]
state.c 89 int rows = rect.end_row - rect.start_row;
103 int height = rect.end_row - rect.start_row - abs(downward);
106 memmove(state->lineinfo + rect.start_row,
107 state->lineinfo + rect.start_row + downward,
110 memmove(state->lineinfo + rect.start_row - downward,
111 state->lineinfo + rect.start_row,
128 .start_row = state->scrollregion_top,
359 .start_row = state->pos.row,
465 .start_row = state->scrollregion_top,
940 rect.start_row = state->pos.row
    [all...]
  /external/libmpeg2/decoder/
impeg2d_deinterlace.h 27 WORD32 start_row,
impeg2d_deinterlace.c 179 WORD32 start_row,
258 &s_params, start_row, num_rows);
278 start_row,
  /external/perfetto/src/trace_processor/
row_iterators.h 41 RangeRowIterator(uint32_t start_row, uint32_t end_row, bool desc);
42 RangeRowIterator(uint32_t start_row, bool desc, std::vector<bool> row_filter);
row_iterators.cc 47 RangeRowIterator::RangeRowIterator(uint32_t start_row,
50 : start_row_(start_row), end_row_(end_row), desc_(desc) {}
52 RangeRowIterator::RangeRowIterator(uint32_t start_row,
55 : start_row_(start_row),
raw_table.cc 84 auto start_row = static_cast<uint32_t>(std::distance(set_ids.begin(), lb)); local
102 auto write_value_at_index = [this, start_row](uint32_t arg_idx,
104 value_fn(storage_->args().arg_values()[start_row + arg_idx]);
106 auto write_arg = [this, writer, start_row](uint32_t arg_idx,
108 uint32_t arg_row = start_row + arg_idx;
197 uint32_t arg_row = start_row + P::kBufFieldNumber - 1;
filtered_row_index.cc 24 FilteredRowIndex::FilteredRowIndex(uint32_t start_row, uint32_t end_row)
25 : mode_(Mode::kAllRows), start_row_(start_row), end_row_(end_row) {}
filtered_row_index.h 46 FilteredRowIndex(uint32_t start_row, uint32_t end_row);
  /external/libmpeg2/common/
ideint.h 120 WORD32 start_row,
ideint_utils.h 45 WORD32 start_row,
ideint.c 119 * @param[in] start_row
138 WORD32 start_row,
170 if(start_row & 0x7)
182 rows_remaining = ps_out_frm->ai4_ht[0] - start_row;
195 start_row,
199 start_row,
219 comp_row_start = start_row;
ideint_utils.c 95 WORD32 start_row,
116 comp_row_start = start_row;
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_variance_sse2.c 340 int start_row; \
347 for (start_row = 0; start_row < h; start_row += 16) { \
349 int height = h - start_row < 16 ? h - start_row : 16; \
351 src + (start_row * src_stride), src_stride, x_offset, y_offset, \
352 ref + (start_row * ref_stride), ref_stride, height, &sse2, NULL, \
358 src + 16 + (start_row * src_stride), src_stride, x_offset, \
359 y_offset, ref + 16 + (start_row * ref_stride), ref_stride, height,
    [all...]
  /external/gemmlowp/internal/
unpack.h 59 int start_row; member in struct:gemmlowp::MatrixBlockBounds
65 : start_row(start_row_),
139 assert(dst_block.start_row >= 0);
140 assert(dst_block.start_row + dst_block.rows <= dst->rows());
177 const int global_row = r + dst_block.start_row;
191 r + dst_block.start_row, c8 + dst_block.start_col);
194 const int global_row = r + dst_block.start_row;
206 const int global_row = r + dst_block.start_row;
225 const int global_row = r + dst_block.start_row;
233 const int global_row = r + dst_block.start_row;
    [all...]
compute.h 79 void ComputeRun(int start_row, int start_col, int start_depth,
81 packed_lhs_.seek_run(start_row, start_depth);
84 start_row, start_col, Format::kRows, Format::kCols);
91 void ComputeL1(int start_row, int rows, int start_col, int cols,
99 ComputeRun(start_row + r, start_col + c, start_depth, depth);
multi_thread_gemm.h 486 result_block.start_row + r, result_block.start_col + c, rs, cs);
490 lhs_offset.block(curr_result_block.start_row, rs),
668 int start_row = next_start_row; local
672 int block_rows = next_start_row - start_row;
673 auto lhs_block = lhs.block(start_row, 0, block_rows, depth);
681 MatrixBlockBounds(start_row, c, block_rows, cs),
  /external/gemmlowp/public/
map.h 67 MatrixMap block(int start_row, int start_col, int block_rows,
69 assert(start_row >= 0);
70 assert(start_row + block_rows <= rows_);
74 return MatrixMap(data(start_row, start_col), block_rows, block_cols,
  /external/tensorflow/tensorflow/core/kernels/
eigen_spatial_convolutions.h 114 const StorageIndex start_row = (c == start_col) ? rhs.rowOffset() : 0; local
118 // We can squeeze reads for all rows in [start_row, max_row) range.
119 if (!pad_col && !lm.padAnyRow(start_row, max_row - 1)) {
125 (max_row - start_row) * rhs.patchDepth());
127 const StorageIndex base_idx = lm.baseIndex(start_row, c);
166 for (StorageIndex r = start_row; r < max_row; ++r) {
170 ((c == start_col) && (r == start_row)) ? rhs.depthOffset() : 0;
eigen_spatial_convolutions-inl.h     [all...]
clustering_ops.cc 393 const int64 start_row = num_points * start / num_units;
396 const int64 num_rows = limit_row - start_row;
397 auto points_shard = points.middleRows(start_row, num_rows);
401 nearest_center_indices.middleRows(start_row, num_rows);
403 nearest_center_distances.middleRows(start_row, num_rows);
  /external/libaom/libaom/aom_dsp/x86/
highbd_variance_sse2.c 377 int start_row; \
385 for (start_row = 0; start_row < h; start_row += 16) { \
387 int height = h - start_row < 16 ? h - start_row : 16; \
388 uint16_t *src_tmp = src + (start_row * src_stride); \
389 uint16_t *dst_tmp = dst + (start_row * dst_stride); \
546 int start_row; \
    [all...]
  /external/libjpeg-turbo/
jmemmgr.c 568 * strips; that is, successive access start_row numbers differ by exactly
820 JDIMENSION start_row, JDIMENSION num_rows, boolean writable)
821 /* Access the part of a virtual sample array starting at start_row */
825 JDIMENSION end_row = start_row + num_rows;
834 if (start_row < ptr->cur_start_row |
    [all...]

Completed in 6327 milliseconds

1 2