HomeSort by relevance Sort by last modified time
    Searched refs:start_row (Results 1 - 25 of 39) 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...]
vterm.c 241 if(abs(downward) >= rect.end_row - rect.start_row ||
271 dest.start_row = rect.start_row;
273 src.start_row = rect.start_row + downward;
278 dest.start_row = rect.start_row + upward;
280 src.start_row = rect.start_row;
288 rect.start_row = rect.end_row - downward
    [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...]
state.c 88 int height = rect.end_row - rect.start_row - abs(downward);
91 memmove(state->lineinfo + rect.start_row,
92 state->lineinfo + rect.start_row + downward,
95 memmove(state->lineinfo + rect.start_row - downward,
96 state->lineinfo + rect.start_row,
113 .start_row = state->scrollregion_top,
309 .start_row = state->pos.row,
406 .start_row = state->scrollregion_top,
953 rect.start_row = state->pos.row;
1033 rect.start_row = state->pos.row; rect.end_row = state->pos.row + 1
    [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,
impeg2d_dec_hdr.c 899 WORD32 start_row; local
901 start_row = s_job.i2_start_mb_y << 4;
903 num_rows -= start_row;
984 WORD32 start_row; local
    [all...]
  /external/gemmlowp/internal/
compute.h 64 void ComputeRun(int start_row, int start_col, int start_depth,
66 packed_lhs_.seek_run(start_row, start_depth);
69 start_row, start_col, Format::kRows, Format::kCols);
75 void ComputeL1(int start_row, int rows, int start_col, int cols,
83 ComputeRun(start_row + r, start_col + c, start_depth, depth);
multi_thread_gemm.h 625 int start_row = next_start_row; local
629 int block_rows = next_start_row - start_row;
630 auto lhs_block = lhs.block(start_row, 0, block_rows, depth);
631 auto result_block = result->block(start_row, c, block_rows, cs);
  /external/gemmlowp/public/
map.h 63 MatrixMap block(int start_row, int start_col, int block_rows,
65 assert(start_row >= 0);
66 assert(start_row + block_rows <= rows_);
70 return MatrixMap(data(start_row, start_col), block_rows, block_cols,
  /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 350 int start_row; \
356 for (start_row = 0; start_row < h; start_row +=16) { \
358 int height = h - start_row < 16 ? h - start_row : 16; \
360 src + (start_row * src_stride), src_stride, \
361 x_offset, y_offset, dst + (start_row * dst_stride), \
367 src + 16 + (start_row * src_stride), src_stride, \
368 x_offset, y_offset, dst + 16 + (start_row * dst_stride),
    [all...]
  /external/libjpeg-turbo/
jmemmgr.c 545 * strips; that is, successive access start_row numbers differ by exactly
789 JDIMENSION start_row, JDIMENSION num_rows,
791 /* Access the part of a virtual sample array starting at start_row */
795 JDIMENSION end_row = start_row + num_rows;
804 if (start_row < ptr->cur_start_row ||
818 * start_row = 0, so the limiting case applies and we load from 0 anyway.
820 if (start_row > ptr->cur_start_row) {
821 ptr->cur_start_row = start_row;
    [all...]
jcdctmgr.c 480 * position start_row/start_col, and moving to the right for any additional
487 JDIMENSION start_row, JDIMENSION start_col,
503 sample_data += start_row; /* fold in the vertical offset once */
577 JDIMENSION start_row, JDIMENSION start_col,
594 sample_data += start_row; /* fold in the vertical offset once */
  /external/opencv3/3rdparty/libjpeg/
jmemmgr.c 514 * strips; that is, successive access start_row numbers differ by exactly
758 JDIMENSION start_row, JDIMENSION num_rows,
760 /* Access the part of a virtual sample array starting at start_row */
764 JDIMENSION end_row = start_row + num_rows;
773 if (start_row < ptr->cur_start_row ||
787 * start_row = 0, so the limiting case applies and we load from 0 anyway.
789 if (start_row > ptr->cur_start_row) {
790 ptr->cur_start_row = start_row;
811 if (ptr->first_undef_row < start_row) {
814 undef_row = start_row; /* but reader is allowed to read ahead *
    [all...]
jcdctmgr.c 60 * position start_row/start_col, and moving to the right for any additional
67 JDIMENSION start_row, JDIMENSION start_col,
78 sample_data += start_row; /* fold in the vertical offset once */
130 JDIMENSION start_row, JDIMENSION start_col,
141 sample_data += start_row; /* fold in the vertical offset once */
  /external/pdfium/third_party/libjpeg/
fpdfapi_jmemmgr.c 515 * strips; that is, successive access start_row numbers differ by exactly
759 JDIMENSION start_row, JDIMENSION num_rows,
761 /* Access the part of a virtual sample array starting at start_row */
765 JDIMENSION end_row = start_row + num_rows;
774 if (start_row < ptr->cur_start_row ||
788 * start_row = 0, so the limiting case applies and we load from 0 anyway.
790 if (start_row > ptr->cur_start_row) {
791 ptr->cur_start_row = start_row;
812 if (ptr->first_undef_row < start_row) {
815 undef_row = start_row; /* but reader is allowed to read ahead *
    [all...]
fpdfapi_jcdctmgr.c 175 * position start_row/start_col, and moving to the right for any additional
182 JDIMENSION start_row, JDIMENSION start_col,
193 sample_data += start_row; /* fold in the vertical offset once */
272 JDIMENSION start_row, JDIMENSION start_col,
283 sample_data += start_row; /* fold in the vertical offset once */
  /external/libvterm/include/
vterm.h 31 int start_row; member in struct:__anon16682
40 return p.row >= r.start_row && p.row < r.end_row &&
47 rect->start_row += row_delta; rect->end_row += row_delta;
  /external/autotest/client/site_tests/firmware_TouchMTB/
spreadsheet.py 329 row_target = int(table.data.start_row) + int(table.data.num_rows)
359 def _get_summary_table(self, title, header_row, start_row):
364 @param start_row: starting row of data in the table
377 start_row,
  /external/webp/src/enc/
analysis.c 429 int start_row, int end_row) {
435 VP8IteratorSetRow(&job->it, start_row);
436 VP8IteratorSetCountDown(&job->it, (end_row - start_row) * enc->mb_w_);
442 job->delta_progress = (start_row == 0) ? 20 : 0;
  /external/opencv3/3rdparty/libwebp/dec/
vp8l.c 615 const int start_row = dec->last_row_; local
616 const int end_row = start_row + num_rows;
625 VP8LInverseTransform(transform, start_row, end_row, rows_in, rows_out);
633 const int start_row = dec->last_row_; local
634 const int end_row = start_row + num_rows;
636 uint8_t* rows_out = (uint8_t*)dec->io_->opaque + dec->io_->width * start_row;
640 VP8LColorIndexInverseTransformAlpha(transform, start_row, end_row, rows_in,
    [all...]

Completed in 552 milliseconds

1 2