/external/libvterm/src/ |
D | rect.h | 6 #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()
|
D | vterm.c | 242 abs(rightward) >= rect.end_col - rect.start_col) { in vterm_scroll_rect() 254 dest.end_col = rect.end_col - rightward; in vterm_scroll_rect() 256 src.end_col = rect.end_col; in vterm_scroll_rect() 265 dest.end_col = rect.end_col; in vterm_scroll_rect() 267 src.end_col = rect.end_col - leftward; in vterm_scroll_rect() 293 rect.start_col = rect.end_col - rightward; in vterm_scroll_rect() 295 rect.end_col = rect.start_col - rightward; in vterm_scroll_rect() 323 init_col = dest.end_col - 1; in vterm_copy_cells() 329 test_col = dest.end_col; in vterm_copy_cells()
|
D | screen.c | 130 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() 356 rect.end_col >= screen->damaged.end_col && in scrollrect() 503 .end_col = old_cols, in resize() 531 .end_col = new_cols, in resize() [all …]
|
D | state.c | 87 if(rect.start_col == 0 && rect.end_col == state->cols && rightward == 0) { in scroll() 116 .end_col = SCROLLREGION_RIGHT(state), in linefeed() 312 .end_col = THISROWWIDTH(state), in on_text() 409 .end_col = SCROLLREGION_RIGHT(state), in on_control() 957 rect.end_col = SCROLLREGION_RIGHT(state); in on_csi() 959 rect.end_col = THISROWWIDTH(state); in on_csi() 1034 rect.start_col = state->pos.col; rect.end_col = state->cols; in on_csi() 1035 if(rect.end_col > rect.start_col) in on_csi() 1048 rect.start_col = 0; rect.end_col = state->cols; in on_csi() 1051 if(rect.end_col > rect.start_col) in on_csi() [all …]
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | tensor_format_test.py | 104 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 …]
|
D | 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/libvpx/libvpx/vp8/decoder/ |
D | error_concealment.c | 124 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 vp8_calculate_overlaps() local 187 end_col = VPXMIN(mb_cols - overlap_mb_col, 2); in vp8_calculate_overlaps() 193 if (abs(new_col - ((16 * overlap_mb_col) << 3)) < ((3 * 4) << 3)) end_col = 1; in vp8_calculate_overlaps() 197 for (rel_col = 0; rel_col < end_col; ++rel_col) { in vp8_calculate_overlaps()
|
/external/libvterm/include/ |
D | vterm.h | 34 int end_col; member 41 p.col >= r.start_col && p.col < r.end_col; in vterm_rect_contains() 48 rect->start_col += col_delta; rect->end_col += col_delta; in vterm_rect_move()
|
/external/pdfium/core/fxge/ |
D | cfx_renderdevice.cpp | 208 int end_col, in DrawNormalTextHelper() argument 231 for (int col = start_col; col < end_col; ++col) { in DrawNormalTextHelper() 251 for (int col = start_col + 1; col < end_col - 1; ++col) { 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() 298 for (int col = start_col + 1; col < end_col; ++col) { in DrawNormalTextHelper() 323 for (int col = start_col + 1; col < end_col; ++col) { in DrawNormalTextHelper() 1070 int end_col = in DrawNormalText() local 1072 if (start_col >= end_col) in DrawNormalText() 1076 top.ValueOrDie(), start_col, end_col, bNormal, in DrawNormalText()
|
/external/v8/tools/clang/scripts/ |
D | apply_fixits.py | 81 + line[-fixit.end_col - 1:])
|
/external/swiftshader/src/OpenGL/compiler/ |
D | glslang_tab.cpp | 1684 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/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 1503 int start_col, end_col, start_row, end_row; in exhuastive_mesh_search() local 1518 end_col = VPXMIN(range, x->mv_limits.col_max - fcenter_mv.col); in exhuastive_mesh_search() 1521 for (c = start_col; c <= end_col; c += col_step) { in exhuastive_mesh_search() 1537 if (c + 3 <= end_col) { in exhuastive_mesh_search() 1558 for (i = 0; i < end_col - c; ++i) { in exhuastive_mesh_search()
|
/external/google-styleguide/cpplint/ |
D | cpplint.py | 5636 end_col = -1 5644 (_, end_line, end_col) = CloseExpression( 5649 if end_col < 0: 5655 line = clean_lines.elided[i][end_col:] 5664 end_col = 0
|
/external/clang/tools/c-index-test/ |
D | c-index-test.c | 1779 unsigned end_line, unsigned end_col, in print_cursor_file_scan() argument 1784 PrintExtent(stdout, start_line, start_col, end_line, end_col); in print_cursor_file_scan()
|