Home
last modified time | relevance | path

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

123

/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/lite/experimental/ruy/
Dpack_x86.h126 PackedMatrix<std::int8_t>* packed_matrix, int start_col,
132 RUY_DCHECK_EQ((end_col - start_col) % Layout::kCols, 0);
133 RUY_DCHECK_EQ(start_col % Layout::kCols, 0);
138 for (int block_col = start_col; block_col < end_col;
169 PackedMatrix<float>* packed_matrix, int start_col,
175 RUY_DCHECK_EQ((end_col - start_col) % Layout::kCols, 0);
176 RUY_DCHECK_EQ(start_col % Layout::kCols, 0);
179 for (int block_col = start_col; block_col < end_col;
213 PackedMatrix<std::int8_t>* packed_matrix, int start_col,
219 RUY_DCHECK_EQ((end_col - start_col) % Layout::kCols, 0);
[all …]
Dpack_arm.h107 std::int8_t* packed_ptr, int start_col, int end_col,
113 std::int8_t* packed_ptr, int start_col, int end_col,
120 int start_col, int end_col,
126 std::int8_t* packed_ptr, int start_col,
148 PackedMatrix<std::int8_t>* packed_matrix, int start_col,
152 RUY_DCHECK_EQ(start_col % 4, 0);
156 for (int block_col = start_col; block_col < end_col; block_col += 4) {
192 packed_ptr, start_col, end_col, sums_ptr, kInputXor);
197 packed_ptr, start_col, end_col, sums_ptr, kInputXor);
230 PackedMatrix<std::int8_t>* packed_matrix, int start_col,
[all …]
Dkernel_x86.h50 int start_col, int end_row, int end_col,
53 MakeKernelParams8bit(lhs, rhs, spec, start_row, start_col, end_row, end_col,
68 const BasicSpec<float, float>& spec, int start_row, int start_col,
71 MakeKernelParamsFloat(lhs, rhs, spec, start_row, start_col, end_row,
90 int start_col, int end_row, int end_col,
93 MakeKernelParams8bit(lhs, rhs, spec, start_row, start_col, end_row, end_col,
113 const BasicSpec<float, float>& spec, int start_row, int start_col,
116 MakeKernelParamsFloat(lhs, rhs, spec, start_row, start_col, end_row,
139 int start_col, int end_row, int end_col,
142 MakeKernelParams8bit(lhs, rhs, spec, start_row, start_col, end_row, end_col,
[all …]
Dkernel_common.h46 int start_row, int start_col, int end_row, int end_col, in RunKernelTyped() argument
64 RUY_DCHECK_LE(0, start_col); in RunKernelTyped()
65 RUY_DCHECK_LE(start_col, end_col); in RunKernelTyped()
67 RUY_DCHECK_EQ((end_col - start_col) % RhsLayout::kCols, 0); in RunKernelTyped()
69 kernel.Run(lhs, rhs, spec, start_row, start_col, end_row, end_col, dst); in RunKernelTyped()
71 for (int col = start_col; col < end_col; col += RhsLayout::kCols) { in RunKernelTyped()
180 int start_col, int end_row, int end_col,
193 RUY_DCHECK_LE(0, start_col);
194 RUY_DCHECK_LE(start_col, clamped_end_col);
201 for (int j = start_col; j < clamped_end_col; j++) {
[all …]
Dkernel_arm.h62 int start_col, int end_row, int end_col,
65 MakeKernelParams8bit(lhs, rhs, spec, start_row, start_col, end_row, end_col,
91 int start_col, int end_row, int end_col,
94 MakeKernelParams8bit(lhs, rhs, spec, start_row, start_col, end_row, end_col,
116 int start_col, int end_row, int end_col,
119 MakeKernelParams8bit(lhs, rhs, spec, start_row, start_col, end_row, end_col,
146 const BasicSpec<float, float>& spec, int start_row, int start_col,
149 MakeKernelParamsFloat(lhs, rhs, spec, start_row, start_col, end_row,
169 const BasicSpec<float, float>& spec, int start_row, int start_col,
173 MakeKernelParamsFloat(lhs, rhs, spec, start_row, start_col, end_row,
[all …]
Dpack_common.h197 PackedMatrix<PackedScalar>* packed_matrix, int start_col,
200 RUY_DCHECK_EQ((end_col - start_col) % FixedKernelLayout::kCols, 0);
202 for (int col = start_col; col < end_col; col++) {
235 int start_col, int end_col) {
241 tuning, src, &packed, start_col, end_col);
Dpack_arm.cc31 std::int8_t* packed_ptr, int start_col, int end_col, in Pack8bitNeonOutOfOrder() argument
607 std::int8_t* packed_ptr, int start_col, int end_col, in Pack8bitNeonInOrder() argument
796 std::int8_t* packed_ptr, int start_col, in Pack8bitNeonDotprodInOrder() argument
1013 int start_col, int end_col, in Pack8bitNeonDotprodOutOfOrder() argument
1471 float* packed_ptr, int start_col, int end_col) { in PackFloatNeonOutOfOrder() argument
1605 float* packed_ptr, int start_col, int end_col, in PackFloatNeonOutOfOrder() argument
1787 float* packed_ptr, int start_col, int end_col) { in PackFloatNeonInOrder() argument
/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 …]
/external/gemmlowp/internal/
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()
Dunpack.h60 int start_col; member
66 start_col(start_col_), in MatrixBlockBounds()
143 assert(dst_block.start_col >= 0); in UnpackResult()
144 assert(dst_block.start_col + dst_block.cols <= dst->cols()); in UnpackResult()
186 const int global_col = c + dst_block.start_col; in UnpackResult()
193 r + dst_block.start_row, c8 + dst_block.start_col); in UnpackResult()
199 const int global_col = c + dst_block.start_col; in UnpackResult()
211 const int global_col = c + dst_block.start_col; in UnpackResult()
223 const int global_col = c + dst_block.start_col; in UnpackResult()
250 const int global_col = c + dst_block.start_col; in UnpackResult()
/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,
/external/tensorflow/tensorflow/core/kernels/
Deigen_spatial_convolutions.h181 const StorageIndex start_col = rhs.colOffset();
188 for (Index c = start_col; c < max_col; ++c) {
191 const StorageIndex start_row = (c == start_col) ? rhs.rowOffset() : 0;
202 (c == start_col) ? rhs.depthOffset() : 0;
289 ((c == start_col) && (r == start_row)) ? rhs.depthOffset() : 0;
360 const StorageIndex start_col = rhs.colOffset();
372 for (Index c = start_col; c < max_col; ++c) {
375 const StorageIndex start_row = (c == start_col) ? rhs.rowOffset() : 0;
383 ((c == start_col) && (r == start_row)) ? rhs.depthOffset() : 0;
/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]
Djquant-mmx.asm29 ; jsimd_convsamp_mmx(JSAMPARRAY sample_data, JDIMENSION start_col,
34 %define start_col ebp + 12 ; JDIMENSION start_col
Djquanti-sse2.asm29 ; jsimd_convsamp_sse2(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()
/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/pdfium/core/fxge/
Dcfx_renderdevice.cpp225 int start_col, in DrawNormalTextHelper() argument
245 uint8_t* src_scan = src_buf + row * src_pitch + (start_col - left) * 3; in DrawNormalTextHelper()
246 uint8_t* dest_scan = dest_buf + dest_row * dest_pitch + start_col * Bpp; in DrawNormalTextHelper()
249 for (int col = start_col; col < end_col; ++col) { in DrawNormalTextHelper()
265 if (start_col > left) in DrawNormalTextHelper()
269 for (int col = start_col + 1; col < end_col - 1; ++col) { in DrawNormalTextHelper()
277 if (start_col > left) { in DrawNormalTextHelper()
283 for (int col = start_col + 1; col < end_col - 1; ++col) { in DrawNormalTextHelper()
291 for (int col = start_col; col < end_col; ++col) { in DrawNormalTextHelper()
305 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

123