Home
last modified time | relevance | path

Searched refs:end_col (Results 1 – 25 of 28) sorted by relevance

12

/external/libvterm/src/
Drect.h6 #define ARGSrect(r) (r).start_row, (r).start_col, (r).end_row, (r).end_col
14 if(dst->end_col < src->end_col) dst->end_col = src->end_col; in rect_expand()
23 if(dst->end_col > bounds->end_col) dst->end_col = bounds->end_col; in rect_clip()
26 if(dst->end_col < dst->start_col) dst->end_col = dst->start_col; in rect_clip()
35 (a->end_col == b->end_col); in rect_equal()
44 if(small->end_col > big->end_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()
282 dest.end_col = rect.end_col - rightward; in vterm_scroll_rect()
284 src.end_col = rect.end_col; in vterm_scroll_rect()
293 dest.end_col = rect.end_col; in vterm_scroll_rect()
295 src.end_col = rect.end_col - leftward; 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()
351 init_col = dest.end_col - 1; in vterm_copy_cells()
357 test_col = dest.end_col; in vterm_copy_cells()
Dscreen.c130 if(screen->damaged.end_col < rect.end_col) in damagerect()
131 screen->damaged.end_col = rect.end_col; in damagerect()
166 .end_col = screen->cols, in damagescreen()
195 .end_col = pos.col+info->width, in putglyph()
213 dest.end_col == screen->cols && // full width in moverect_internal()
224 int cols = src.end_col - src.start_col; in moverect_internal()
272 for(int col = rect.start_col; col < rect.end_col; col++) { in erase_internal()
360 rect.end_col >= screen->damaged.end_col && in scrollrect()
502 .end_col = old_cols, in resize()
530 .end_col = new_cols, in resize()
[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()
131 .end_col = SCROLLREGION_RIGHT(state), in linefeed()
362 .end_col = THISROWWIDTH(state), in on_text()
468 .end_col = SCROLLREGION_RIGHT(state), in on_control()
944 rect.end_col = SCROLLREGION_RIGHT(state); in on_csi()
946 rect.end_col = THISROWWIDTH(state); 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()
1035 rect.start_col = 0; rect.end_col = state->cols; in on_csi()
[all …]
/external/tensorflow/tensorflow/lite/experimental/ruy/
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,
69 int end_row, int end_col, Matrix<float>* dst) const {
72 end_col, dst, &params);
90 int start_col, int end_row, int end_col,
93 MakeKernelParams8bit(lhs, rhs, spec, start_row, start_col, end_row, end_col,
114 int end_row, int end_col, Matrix<float>* dst) const {
117 end_col, dst, &params);
139 int start_col, int end_row, int end_col,
142 MakeKernelParams8bit(lhs, rhs, spec, start_row, start_col, end_row, end_col,
[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,
127 int end_col, std::int32_t* sums_ptr,
149 int end_col) {
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);
231 int end_col) {
238 for (int block_col = start_col; block_col < end_col; block_col += 2) {
[all …]
Dpack_x86.h127 int end_col) {
132 RUY_DCHECK_EQ((end_col - start_col) % Layout::kCols, 0);
138 for (int block_col = start_col; block_col < end_col;
170 int end_col) {
175 RUY_DCHECK_EQ((end_col - start_col) % Layout::kCols, 0);
179 for (int block_col = start_col; block_col < end_col;
214 int end_col) {
219 RUY_DCHECK_EQ((end_col - start_col) % Layout::kCols, 0);
225 for (int block_col = start_col; block_col < end_col;
253 int end_col) {
[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,
147 int end_row, int end_col, Matrix<float>* dst) const {
150 end_col, dst, &params);
170 int end_row, int end_col, Matrix<float>* dst) const {
174 end_col, dst, &params);
[all …]
Dkernel_common.h46 int start_row, int start_col, int end_row, int end_col, in RunKernelTyped() argument
65 RUY_DCHECK_LE(start_col, end_col); in RunKernelTyped()
66 RUY_DCHECK_LT(end_col, dst->layout.cols + RhsLayout::kCols); 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()
72 int block_end_col = std::min(col + RhsLayout::kCols, end_col); in RunKernelTyped()
180 int start_col, int end_row, int end_col,
187 int clamped_end_col = std::min(end_col, dst->layout.cols);
196 RUY_DCHECK_LE(clamped_end_col, end_col);
[all …]
Dpack_common.h198 int end_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
797 int end_col, std::int32_t* sums_ptr, 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
Dkernel_avx2.cc1431 const int end_col = std::min(params.dst_cols, params.last_col + 8);
1446 for (; col <= end_col - 8; col += 8) {
1505 if (col < end_col) {
1507 RUY_DCHECK_GE(end_col - col, 0);
1508 RUY_DCHECK_LT(end_col - col, 8);
1514 const int residual_cols = std::min(end_col - col, 8);
Dkernel_avx512.cc1288 const int end_col = std::min(params.dst_cols, params.last_col + 16);
1302 for (; col <= end_col - 16; col += 16) {
1660 if (col < end_col) {
1661 RUY_DCHECK_GE(end_col - col, 0);
1662 RUY_DCHECK_LT(end_col - col, 16);
1703 const int residual_cols = std::min(end_col - col - 8 * mmm, 8);
/external/tensorflow/tensorflow/python/debug/cli/
Dtensor_format_test.py104 is_omitted, row, start_col, end_col = (
109 self.assertEqual(match.end(), end_col)
504 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
509 self.assertEqual(actual_col_0_0_0 + 4, end_col)
512 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
517 self.assertIsNone(end_col)
520 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
525 self.assertEqual(actual_col_0_1_0 + 4, end_col)
527 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
531 self.assertIsNone(end_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/libvpx/libvpx/vp8/decoder/
Derror_concealment.c124 int end_col = VPXMIN(4 + mb_col * 4 - first_blk_col, 2); in calculate_overlaps_mb() local
131 if (new_col >= 0 && (new_col & 0x1F) == 0) end_col = 1; in calculate_overlaps_mb()
137 if (new_col < (mb_col * 16) << 3) end_col = 1; in calculate_overlaps_mb()
140 for (col = 0; col < end_col; ++col) { in calculate_overlaps_mb()
155 int end_row, end_col; in calculate_overlaps() local
187 end_col = VPXMIN(mb_cols - overlap_mb_col, 2); in calculate_overlaps()
193 if (abs(new_col - ((16 * overlap_mb_col) << 3)) < ((3 * 4) << 3)) end_col = 1; in calculate_overlaps()
197 for (rel_col = 0; rel_col < end_col; ++rel_col) { in calculate_overlaps()
/external/libaom/libaom/av1/common/
Dobmc.h32 const int end_col = AOMMIN(mi_col + xd->width, cm->mi_params.mi_cols); in foreach_overlappable_nb_above() local
34 for (int above_mi_col = mi_col; above_mi_col < end_col && nb_count < nb_max; in foreach_overlappable_nb_above()
/external/iproute2/tc/
Demp_ematch.yacc.c668 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; in yy_location_print_() local
680 if (0 <= end_col) in yy_location_print_()
681 res += YYFPRINTF (yyo, ".%d", end_col); in yy_location_print_()
683 else if (0 <= end_col && yylocp->first_column < end_col) in yy_location_print_()
684 res += YYFPRINTF (yyo, "-%d", end_col); in yy_location_print_()
/external/pdfium/core/fxge/
Dcfx_renderdevice.cpp226 int end_col, in DrawNormalTextHelper() argument
249 for (int col = start_col; col < end_col; ++col) { in DrawNormalTextHelper()
269 for (int col = start_col + 1; col < end_col - 1; ++col) { 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()
316 for (int col = start_col + 1; col < end_col; ++col) { in DrawNormalTextHelper()
341 for (int col = start_col + 1; col < end_col; ++col) { in DrawNormalTextHelper()
1029 int end_col = std::min<int>(end_col_safe.ValueOrDie(), dest_width); in DrawNormalText() local
1030 if (start_col >= end_col) in DrawNormalText()
1034 end_col, bNormal, bBGRStripe, x_subpixel, a, r, g, b); in DrawNormalText()
/external/libvterm/include/
Dvterm.h35 int end_col; member
42 p.col >= r.start_col && p.col < r.end_col; in vterm_rect_contains()
49 rect->start_col += col_delta; rect->end_col += col_delta; in vterm_rect_move()
/external/angle/tools/flex-bison/third_party/skeletons/
Dc.m4837 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0;
849 if (0 <= end_col)
850 res += YYFPRINTF (yyo, ".%d", end_col);
852 else if (0 <= end_col && yylocp->first_column < end_col)
853 res += YYFPRINTF (yyo, "-%d", end_col);
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c1654 int start_col, end_col, start_row, end_row; in exhaustive_mesh_search() local
1669 end_col = VPXMIN(range, x->mv_limits.col_max - fcenter_mv.col); in exhaustive_mesh_search()
1672 for (c = start_col; c <= end_col; c += col_step) { in exhaustive_mesh_search()
1688 if (c + 3 <= end_col) { in exhaustive_mesh_search()
1709 for (i = 0; i < end_col - c; ++i) { in exhaustive_mesh_search()
1741 int start_col, end_col, start_row, end_row; in exhaustive_mesh_search_multi_step() local
1751 end_col = VPXMIN(center_mv->col + range, mv_limits->col_max); in exhaustive_mesh_search_multi_step()
1753 for (c = start_col; c <= end_col; c += step) { in exhaustive_mesh_search_multi_step()
1777 int start_col, end_col, start_row, end_row; in exhaustive_mesh_search_single_step() local
1788 end_col = VPXMIN(center_mv->col + range, mv_limits->col_max); in exhaustive_mesh_search_single_step()
[all …]
/external/angle/src/compiler/translator/
Dglslang_tab_autogen.cpp1577 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; in yy_location_print_() local
1589 if (0 <= end_col) in yy_location_print_()
1590 res += YYFPRINTF(yyo, ".%d", end_col); in yy_location_print_()
1592 else if (0 <= end_col && yylocp->first_column < end_col) in yy_location_print_()
1593 res += YYFPRINTF(yyo, "-%d", end_col); in yy_location_print_()
/external/swiftshader/src/OpenGL/compiler/
Dglslang_tab.cpp1684 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; in yy_location_print_() local
1696 if (0 <= end_col) in yy_location_print_()
1697 res += YYFPRINTF (yyo, ".%d", end_col); in yy_location_print_()
1699 else if (0 <= end_col && yylocp->first_column < end_col) in yy_location_print_()
1700 res += YYFPRINTF (yyo, "-%d", end_col); in yy_location_print_()
/external/google-styleguide/cpplint/
Dcpplint.py5655 end_col = -1
5663 (_, end_line, end_col) = CloseExpression(
5668 if end_col < 0:
5674 line = clean_lines.elided[i][end_col:]
5683 end_col = 0

12