/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/bison/src/ |
D | location.c | 105 int end_col = 0 != loc.end.column ? loc.end.column - 1 : 0; in location_print() local 122 if (0 <= end_col) in location_print() 123 res += fprintf (out, ".%d", end_col); in location_print() 131 if (0 <= end_col) in location_print() 132 res += fprintf (out, ".%d", end_col); in location_print() 134 else if (0 <= end_col && loc.start.column < end_col) in location_print() 135 res += fprintf (out, "-%d", end_col); in location_print()
|
/external/libvpx/libvpx/vp8/decoder/ |
D | error_concealment.c | 137 int end_col = VPXMIN(4 + mb_col * 4 - first_blk_col, 2); in calculate_overlaps_mb() local 146 end_col = 1; in calculate_overlaps_mb() 154 end_col = 1; in calculate_overlaps_mb() 158 for (col = 0; col < end_col; ++col) in calculate_overlaps_mb() 179 int end_row, end_col; in vp8_calculate_overlaps() local 213 end_col = VPXMIN(mb_cols - overlap_mb_col, 2); in vp8_calculate_overlaps() 221 end_col = 1; in vp8_calculate_overlaps() 226 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/src/fxge/ge/ |
D | fx_ge_text.cpp | 414 int end_col = left + ncols; in DrawNormalText() local 415 if (end_col > dest_width) { in DrawNormalText() 416 end_col = dest_width; in DrawNormalText() 418 if (start_col >= end_col) { in DrawNormalText() 432 for (int col = start_col; col < end_col; col++) { in DrawNormalText() 470 for (int col = start_col + 1; col < end_col - 1; col++) { in DrawNormalText() 511 for (int col = start_col + 1; col < end_col - 1; col++) { in DrawNormalText() 534 for (int col = start_col; col < end_col; col++) { in DrawNormalText() 636 for (int col = start_col + 1; col < end_col; col++) { in DrawNormalText() 738 for (int col = start_col + 1; col < end_col; col++) { in DrawNormalText() [all …]
|
/external/bison/data/ |
D | c.m4 | 668 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; 680 if (0 <= end_col) 681 res += fprintf (yyo, ".%d", end_col); 683 else if (0 <= end_col && yylocp->first_column < end_col) 684 res += fprintf (yyo, "-%d", end_col);
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 1539 int start_col, end_col, start_row, end_row; in vp9_full_range_search_c() local 1554 end_col = VPXMIN(range, x->mv_col_max - ref_mv->col); in vp9_full_range_search_c() 1557 for (c = start_col; c <= end_col; c += 4) { in vp9_full_range_search_c() 1558 if (c + 3 <= end_col) { in vp9_full_range_search_c() 1580 for (i = 0; i < end_col - c; ++i) { in vp9_full_range_search_c()
|
/external/opencv/cxcore/src/ |
D | cxarray.cpp | 1574 cvGetCols( const CvArr* arr, CvMat* submat, int start_col, int end_col ) in cvGetCols() argument 1593 (unsigned)end_col > (unsigned)cols ) in cvGetCols() 1606 submat->cols = end_col - start_col; in cvGetCols()
|
/external/opencv3/modules/core/src/ |
D | array.cpp | 1352 cvGetCols( const CvArr* arr, CvMat* submat, int start_col, int end_col ) in cvGetCols() argument 1366 (unsigned)end_col > (unsigned)cols ) in cvGetCols() 1379 submat->cols = end_col - start_col; in cvGetCols()
|
/external/clang/tools/c-index-test/ |
D | c-index-test.c | 1726 unsigned end_line, unsigned end_col, in print_cursor_file_scan() argument 1731 PrintExtent(stdout, start_line, start_col, end_line, end_col); in print_cursor_file_scan()
|
/external/opencv/cxcore/include/ |
D | cxcore.h | 215 int start_col, int end_col );
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | core_c.h | 399 int start_col, int end_col );
|