HomeSort by relevance Sort by last modified time
    Searched refs:start_col (Results 1 - 25 of 37) 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
12 if(dst->start_col > src->start_col) dst->start_col = src->start_col;
21 if(dst->start_col < bounds->start_col) dst->start_col = bounds->start_col;
26 if(dst->end_col < dst->start_col) dst->end_col = dst->start_col
    [all...]
vterm.c 242 abs(rightward) >= rect.end_col - rect.start_col) {
253 dest.start_col = rect.start_col;
255 src.start_col = rect.start_col + rightward;
264 dest.start_col = rect.start_col + leftward;
266 src.start_col = rect.start_col;
293 rect.start_col = rect.end_col - rightward
    [all...]
screen.c 128 if(screen->damaged.start_col > rect.start_col)
129 screen->damaged.start_col = rect.start_col;
165 .start_col = 0,
194 .start_col = pos.col,
212 dest.start_row == 0 && dest.start_col == 0 && // starts top-left corner
224 int cols = src.end_col - src.start_col;
240 memmove(getcell(screen, row, dest.start_col),
241 getcell(screen, row + downward, src.start_col),
    [all...]
  /external/gemmlowp/internal/
compute.h 79 void ComputeRun(int start_row, int start_col, int start_depth,
82 packed_rhs_.seek_run(start_col, 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);
unpack.h 60 int start_col; member in struct:gemmlowp::MatrixBlockBounds
66 start_col(start_col_),
141 assert(dst_block.start_col >= 0);
142 assert(dst_block.start_col + dst_block.cols <= dst->cols());
184 const int global_col = c + dst_block.start_col;
191 r + dst_block.start_row, c8 + dst_block.start_col);
197 const int global_col = c + dst_block.start_col;
209 const int global_col = c + dst_block.start_col;
221 const int global_col = c + dst_block.start_col;
248 const int global_col = c + dst_block.start_col;
    [all...]
  /external/gemmlowp/public/
map.h 67 MatrixMap block(int start_row, int start_col, int block_rows,
71 assert(start_col >= 0);
72 assert(start_col + block_cols <= cols_);
74 return MatrixMap(data(start_row, start_col), block_rows, block_cols,
  /external/libjpeg-turbo/
jsimddct.h 15 EXTERN(void) jsimd_convsamp (JSAMPARRAY sample_data, JDIMENSION start_col,
18 JDIMENSION start_col,
jcdctmgr.c 32 JDIMENSION start_col,
35 JDIMENSION start_col,
373 convsamp (JSAMPARRAY sample_data, JDIMENSION start_col, DCTELEM *workspace)
381 elemptr = sample_data[elemr] + start_col;
485 * position start_row/start_col, and moving to the right for any additional
492 JDIMENSION start_row, JDIMENSION start_col,
510 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) {
512 (*do_convsamp) (sample_data, start_col, workspace);
527 convsamp_float (JSAMPARRAY sample_data, JDIMENSION start_col, FAST_FLOAT *workspace)
535 elemptr = sample_data[elemr] + start_col;
    [all...]
jdcoefct.c 94 JDIMENSION start_col, output_col; local
136 start_col = (MCU_col_num - cinfo->master->first_iMCU_col) *
141 output_col = start_col;
196 JDIMENSION start_col; local
223 start_col = MCU_col_num * compptr->MCU_width;
225 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
jctrans.c 299 JDIMENSION start_col; local
323 start_col = MCU_col_num * compptr->MCU_width;
330 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
jsimd_none.c 233 jsimd_convsamp (JSAMPARRAY sample_data, JDIMENSION start_col,
239 jsimd_convsamp_float (JSAMPARRAY sample_data, JDIMENSION start_col,
jccoefct.c 346 JDIMENSION start_col; local
372 start_col = MCU_col_num * compptr->MCU_width;
374 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
  /external/tensorflow/tensorflow/python/debug/cli/
tensor_format_test.py 104 is_omitted, row, start_col, end_col = (
108 self.assertEqual(match.start(), start_col)
504 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
508 self.assertEqual(actual_col_0_0_0, start_col)
512 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
516 self.assertIsNone(start_col) # Passes ellipsis.
520 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
524 self.assertEqual(actual_col_0_1_0, start_col)
527 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
530 self.assertIsNone(start_col)
    [all...]
tensor_format.py 187 for is_omitted, row, start_col, end_col in zip(are_omitted, rows,
189 if is_omitted or start_col is None or end_col is None:
194 (start_col, end_col, highlight_options.font_attr))
196 formatted.font_attr_segs[row] = [(start_col, end_col,
  /external/v8/tools/clang/scripts/
apply_fixits.py 33 r'{(?P<start_line>\d+?):(?P<start_col>\d+?)-'
38 'FixIt', ('start_line', 'start_col', 'end_line', 'end_col', 'text'))
62 int(m.group('start_line')), -int(m.group('start_col')), int(m.group(
80 lines[fixit.start_line - 1] = (line[:-fixit.start_col - 1] + fixit.text
  /external/libjpeg-turbo/simd/
jsimd_i386.c 700 jsimd_convsamp (JSAMPARRAY sample_data, JDIMENSION start_col,
704 jsimd_convsamp_sse2(sample_data, start_col, workspace);
706 jsimd_convsamp_mmx(sample_data, start_col, workspace);
710 jsimd_convsamp_float (JSAMPARRAY sample_data, JDIMENSION start_col,
714 jsimd_convsamp_float_sse2(sample_data, start_col, workspace);
716 jsimd_convsamp_float_sse(sample_data, start_col, workspace);
718 jsimd_convsamp_float_3dnow(sample_data, start_col, workspace);
jquanti-altivec.c 35 elemptr = sample_data[row] + start_col; \
44 elemptr = sample_data[row] + start_col; \
52 jsimd_convsamp_altivec (JSAMPARRAY sample_data, JDIMENSION start_col,
jsimd_arm.c 459 jsimd_convsamp (JSAMPARRAY sample_data, JDIMENSION start_col,
462 jsimd_convsamp_neon(sample_data, start_col, workspace);
466 jsimd_convsamp_float (JSAMPARRAY sample_data, JDIMENSION start_col,
jsimd_x86_64.c 568 jsimd_convsamp (JSAMPARRAY sample_data, JDIMENSION start_col,
571 jsimd_convsamp_sse2(sample_data, start_col, workspace);
575 jsimd_convsamp_float (JSAMPARRAY sample_data, JDIMENSION start_col,
578 jsimd_convsamp_float_sse2(sample_data, start_col, workspace);
jsimd.h     [all...]
jsimd_arm64.c 520 jsimd_convsamp (JSAMPARRAY sample_data, JDIMENSION start_col,
523 jsimd_convsamp_neon(sample_data, start_col, workspace);
527 jsimd_convsamp_float (JSAMPARRAY sample_data, JDIMENSION start_col,
jsimd_powerpc.c 642 jsimd_convsamp (JSAMPARRAY sample_data, JDIMENSION start_col,
645 jsimd_convsamp_altivec(sample_data, start_col, workspace);
649 jsimd_convsamp_float (JSAMPARRAY sample_data, JDIMENSION start_col,
  /external/pdfium/core/fxge/
cfx_renderdevice.cpp 207 int start_col,
227 uint8_t* src_scan = src_buf + row * src_pitch + (start_col - left) * 3;
228 uint8_t* dest_scan = dest_buf + dest_row * dest_pitch + start_col * Bpp;
231 for (int col = start_col; col < end_col; ++col) {
247 if (start_col > left)
251 for (int col = start_col + 1; col < end_col - 1; ++col) {
259 if (start_col > left) {
265 for (int col = start_col + 1; col < end_col - 1; ++col) {
273 for (int col = start_col; col < end_col; ++col) {
287 int src_value = start_col > left ? AverageRgb(&src_scan[-1]
1063 int start_col = local
    [all...]
  /external/libvterm/include/
vterm.h 33 int start_col; member in struct:__anon26308
41 p.col >= r.start_col && p.col < r.end_col;
48 rect->start_col += col_delta; rect->end_col += col_delta;
  /external/google-breakpad/src/processor/
stackwalk_common.cc 66 // pass 0 for |start_col|. For registers in a set, pass the most recent
72 static int PrintRegister(const char *name, uint32_t value, int start_col) {
76 if (start_col + static_cast<ssize_t>(strlen(buffer)) > kMaxWidth) {
77 start_col = 0;
82 return start_col + strlen(buffer);
86 static int PrintRegister64(const char *name, uint64_t value, int start_col) {
90 if (start_col + static_cast<ssize_t>(strlen(buffer)) > kMaxWidth) {
91 start_col = 0;
96 return start_col + strlen(buffer);
    [all...]

Completed in 190 milliseconds

1 2