Home
last modified time | relevance | path

Searched refs:start_col (Results 1 – 25 of 47) sorted by relevance

12

/external/libvterm/src/
Drect.h6 #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; in rect_expand()
21 if(dst->start_col < bounds->start_col) dst->start_col = bounds->start_col; in rect_clip()
26 if(dst->end_col < dst->start_col) dst->end_col = dst->start_col; in rect_clip()
33 (a->start_col == b->start_col) && in rect_equal()
42 if(small->start_col < big->start_col) return 0; in rect_contains()
53 if(a->start_col > b->end_col || b->start_col > a->end_col) in rect_intersects()
Dvterm.c270 abs(rightward) >= rect.end_col - rect.start_col) { in vterm_scroll_rect()
281 dest.start_col = rect.start_col; in vterm_scroll_rect()
283 src.start_col = rect.start_col + rightward; in vterm_scroll_rect()
292 dest.start_col = rect.start_col + leftward; in vterm_scroll_rect()
294 src.start_col = rect.start_col; in vterm_scroll_rect()
321 rect.start_col = rect.end_col - rightward; in vterm_scroll_rect()
323 rect.end_col = rect.start_col - rightward; in vterm_scroll_rect()
334 int rightward = src.start_col - dest.start_col; in vterm_copy_cells()
352 test_col = dest.start_col - 1; in vterm_copy_cells()
356 init_col = dest.start_col; in vterm_copy_cells()
Dscreen.c128 if(screen->damaged.start_col > rect.start_col) in damagerect()
129 screen->damaged.start_col = rect.start_col; in damagerect()
165 .start_col = 0, in damagescreen()
194 .start_col = pos.col, in putglyph()
212 dest.start_row == 0 && dest.start_col == 0 && // starts top-left corner in moverect_internal()
224 int cols = src.end_col - src.start_col; in moverect_internal()
240 memmove(getcell(screen, row, dest.start_col), in moverect_internal()
241 getcell(screen, row + downward, src.start_col), in moverect_internal()
272 for(int col = rect.start_col; col < rect.end_col; col++) { in erase_internal()
359 else if(rect.start_col <= screen->damaged.start_col && in scrollrect()
[all …]
Dstate.c95 int cols = rect.end_col - rect.start_col; in scroll()
102 if(rect.start_col == 0 && rect.end_col == state->cols && rightward == 0) { in scroll()
130 .start_col = SCROLLREGION_LEFT(state), in linefeed()
361 .start_col = state->pos.col, in on_text()
467 .start_col = SCROLLREGION_LEFT(state), in on_control()
942 rect.start_col = state->pos.col; in on_csi()
1021 rect.start_col = state->pos.col; rect.end_col = state->cols; in on_csi()
1022 if(rect.end_col > rect.start_col) in on_csi()
1026 rect.start_col = 0; in on_csi()
1035 rect.start_col = 0; rect.end_col = state->cols; in on_csi()
[all …]
/external/tensorflow/tensorflow/python/debug/cli/
Dtensor_format_test.py104 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 …]
Dtensor_format.py187 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/libjpeg-turbo/
Djcdctmgr.c32 JDIMENSION start_col,
35 JDIMENSION start_col,
373 convsamp(JSAMPARRAY sample_data, JDIMENSION start_col, DCTELEM *workspace) in convsamp() argument
381 elemptr = sample_data[elemr] + start_col; in convsamp()
492 JDIMENSION start_row, JDIMENSION start_col, JDIMENSION num_blocks) in forward_DCT() argument
509 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) { in forward_DCT()
511 (*do_convsamp) (sample_data, start_col, workspace); in forward_DCT()
525 convsamp_float(JSAMPARRAY sample_data, JDIMENSION start_col, in convsamp_float() argument
534 elemptr = sample_data[elemr] + start_col; in convsamp_float()
582 JDIMENSION start_row, JDIMENSION start_col, in forward_DCT_float() argument
[all …]
Djsimddct.h15 EXTERN(void) jsimd_convsamp(JSAMPARRAY sample_data, JDIMENSION start_col,
17 EXTERN(void) jsimd_convsamp_float(JSAMPARRAY sample_data, JDIMENSION start_col,
Djdcoefct.c93 JDIMENSION start_col, output_col; in decompress_onepass() local
135 start_col = (MCU_col_num - cinfo->master->first_iMCU_col) * in decompress_onepass()
140 output_col = start_col; in decompress_onepass()
195 JDIMENSION start_col; in consume_data() local
222 start_col = MCU_col_num * compptr->MCU_width; in consume_data()
224 buffer_ptr = buffer[ci][yindex + yoffset] + start_col; in consume_data()
Djctrans.c297 JDIMENSION start_col; in compress_output() local
321 start_col = MCU_col_num * compptr->MCU_width; in compress_output()
328 buffer_ptr = buffer[ci][yindex + yoffset] + start_col; in compress_output()
/external/gemmlowp/internal/
Dunpack.h60 int start_col; member
66 start_col(start_col_), in MatrixBlockBounds()
141 assert(dst_block.start_col >= 0); in UnpackResult()
142 assert(dst_block.start_col + dst_block.cols <= dst->cols()); in UnpackResult()
184 const int global_col = c + dst_block.start_col; in UnpackResult()
191 r + dst_block.start_row, c8 + dst_block.start_col); in UnpackResult()
197 const int global_col = c + dst_block.start_col; in UnpackResult()
209 const int global_col = c + dst_block.start_col; in UnpackResult()
221 const int global_col = c + dst_block.start_col; in UnpackResult()
248 const int global_col = c + dst_block.start_col; in UnpackResult()
Dcompute.h79 void ComputeRun(int start_row, int start_col, int start_depth, in ComputeRun() argument
82 packed_rhs_.seek_run(start_col, start_depth); in ComputeRun()
84 start_row, start_col, Format::kRows, Format::kCols); in ComputeRun()
91 void ComputeL1(int start_row, int rows, int start_col, int cols, in ComputeL1() argument
99 ComputeRun(start_row + r, start_col + c, start_depth, depth); in ComputeL1()
/external/libjpeg-turbo/simd/i386/
Djquanti-avx2.asm30 ; jsimd_convsamp_avx2(JSAMPARRAY sample_data, JDIMENSION start_col,
35 %define start_col ebp + 12 ; JDIMENSION start_col
51 mov eax, JDIMENSION [start_col]
Djquanti-sse2.asm29 ; jsimd_convsamp_sse2(JSAMPARRAY sample_data, JDIMENSION start_col,
34 %define start_col ebp + 12 ; JDIMENSION start_col
Djquant-mmx.asm29 ; jsimd_convsamp_mmx(JSAMPARRAY sample_data, JDIMENSION start_col,
34 %define start_col ebp + 12 ; JDIMENSION start_col
Djquantf-sse2.asm29 ; jsimd_convsamp_float_sse2(JSAMPARRAY sample_data, JDIMENSION start_col,
34 %define start_col ebp + 12 ; JDIMENSION start_col
54 mov eax, JDIMENSION [start_col]
Djsimd.c795 jsimd_convsamp(JSAMPARRAY sample_data, JDIMENSION start_col, in jsimd_convsamp() argument
799 jsimd_convsamp_avx2(sample_data, start_col, workspace); in jsimd_convsamp()
801 jsimd_convsamp_sse2(sample_data, start_col, workspace); in jsimd_convsamp()
803 jsimd_convsamp_mmx(sample_data, start_col, workspace); in jsimd_convsamp()
807 jsimd_convsamp_float(JSAMPARRAY sample_data, JDIMENSION start_col, in jsimd_convsamp_float() argument
811 jsimd_convsamp_float_sse2(sample_data, start_col, workspace); in jsimd_convsamp_float()
813 jsimd_convsamp_float_sse(sample_data, start_col, workspace); in jsimd_convsamp_float()
815 jsimd_convsamp_float_3dnow(sample_data, start_col, workspace); in jsimd_convsamp_float()
Djquant-sse.asm29 ; jsimd_convsamp_float_sse(JSAMPARRAY sample_data, JDIMENSION start_col,
34 %define start_col ebp + 12 ; JDIMENSION start_col
54 mov eax, JDIMENSION [start_col]
Djquant-3dn.asm29 ; jsimd_convsamp_float_3dnow(JSAMPARRAY sample_data, JDIMENSION start_col,
34 %define start_col ebp + 12 ; JDIMENSION start_col
54 mov eax, JDIMENSION [start_col]
/external/gemmlowp/public/
Dmap.h67 MatrixMap block(int start_row, int start_col, int block_rows, in block() argument
71 assert(start_col >= 0); in block()
72 assert(start_col + block_cols <= cols_); in block()
74 return MatrixMap(data(start_row, start_col), block_rows, block_cols, in block()
/external/tensorflow/tensorflow/core/kernels/
Deigen_spatial_convolutions.h104 const StorageIndex start_col = rhs.colOffset();
111 for (Index c = start_col; c < max_col; ++c) {
114 const StorageIndex start_row = (c == start_col) ? rhs.rowOffset() : 0;
121 (c == start_col) ? rhs.depthOffset() : 0;
170 ((c == start_col) && (r == start_row)) ? rhs.depthOffset() : 0;
/external/pdfium/core/fxge/
Dcfx_renderdevice.cpp207 int start_col, in DrawNormalTextHelper() argument
227 uint8_t* src_scan = src_buf + row * src_pitch + (start_col - left) * 3; in DrawNormalTextHelper()
228 uint8_t* dest_scan = dest_buf + dest_row * dest_pitch + start_col * Bpp; in DrawNormalTextHelper()
231 for (int col = start_col; col < end_col; ++col) { in DrawNormalTextHelper()
247 if (start_col > left) in DrawNormalTextHelper()
251 for (int col = start_col + 1; col < end_col - 1; ++col) { in DrawNormalTextHelper()
259 if (start_col > left) { in DrawNormalTextHelper()
265 for (int col = start_col + 1; col < end_col - 1; ++col) { in DrawNormalTextHelper()
273 for (int col = start_col; col < end_col; ++col) { in DrawNormalTextHelper()
287 int src_value = start_col > left ? AverageRgb(&src_scan[-1]) in DrawNormalTextHelper()
[all …]
/external/libjpeg-turbo/simd/x86_64/
Djquanti-sse2.asm29 ; jsimd_convsamp_sse2(JSAMPARRAY sample_data, JDIMENSION start_col,
34 ; r11d = JDIMENSION start_col
Djsimd.c686 jsimd_convsamp(JSAMPARRAY sample_data, JDIMENSION start_col, in jsimd_convsamp() argument
690 jsimd_convsamp_avx2(sample_data, start_col, workspace); in jsimd_convsamp()
692 jsimd_convsamp_sse2(sample_data, start_col, workspace); in jsimd_convsamp()
696 jsimd_convsamp_float(JSAMPARRAY sample_data, JDIMENSION start_col, in jsimd_convsamp_float() argument
699 jsimd_convsamp_float_sse2(sample_data, start_col, workspace); in jsimd_convsamp_float()
/external/google-breakpad/src/processor/
Dstackwalk_common.cc72 static int PrintRegister(const char *name, uint32_t value, int start_col) { in PrintRegister() argument
76 if (start_col + static_cast<ssize_t>(strlen(buffer)) > kMaxWidth) { in PrintRegister()
77 start_col = 0; in PrintRegister()
82 return start_col + strlen(buffer); in PrintRegister()
86 static int PrintRegister64(const char *name, uint64_t value, int start_col) { in PrintRegister64() argument
90 if (start_col + static_cast<ssize_t>(strlen(buffer)) > kMaxWidth) { in PrintRegister64()
91 start_col = 0; in PrintRegister64()
96 return start_col + strlen(buffer); in PrintRegister64()

12