/external/libvterm/src/ |
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; 23 if(dst->end_col > bounds->end_col) dst->end_col = bounds->end_col; 26 if(dst->end_col < dst->start_col) dst->end_col = dst->start_col [all...] |
vterm.c | 242 abs(rightward) >= rect.end_col - rect.start_col) { 254 dest.end_col = rect.end_col - rightward; 256 src.end_col = rect.end_col; 265 dest.end_col = rect.end_col; 267 src.end_col = rect.end_col - leftward; 293 rect.start_col = rect.end_col - rightward [all...] |
screen.c | 130 if(screen->damaged.end_col < rect.end_col) 131 screen->damaged.end_col = rect.end_col; 166 .end_col = screen->cols, 195 .end_col = pos.col+info->width, 213 dest.end_col == screen->cols && // full width 224 int cols = src.end_col - src.start_col; 272 for(int col = rect.start_col; col < rect.end_col; col++) { 356 rect.end_col >= screen->damaged.end_col & [all...] |
state.c | 87 if(rect.start_col == 0 && rect.end_col == state->cols && rightward == 0) { 116 .end_col = SCROLLREGION_RIGHT(state), 312 .end_col = THISROWWIDTH(state), 409 .end_col = SCROLLREGION_RIGHT(state), 957 rect.end_col = SCROLLREGION_RIGHT(state); 959 rect.end_col = THISROWWIDTH(state); 1034 rect.start_col = state->pos.col; rect.end_col = state->cols; 1035 if(rect.end_col > rect.start_col) 1048 rect.start_col = 0; rect.end_col = state->cols; 1051 if(rect.end_col > rect.start_col [all...] |
/external/bison/src/ |
location.c | 105 int end_col = 0 != loc.end.column ? loc.end.column - 1 : 0; local 122 if (0 <= end_col) 123 res += fprintf (out, ".%d", end_col); 131 if (0 <= end_col) 132 res += fprintf (out, ".%d", end_col); 134 else if (0 <= end_col && loc.start.column < end_col) 135 res += fprintf (out, "-%d", end_col);
|
/external/libvpx/libvpx/vp8/decoder/ |
error_concealment.c | 137 int end_col = VPXMIN(4 + mb_col * 4 - first_blk_col, 2); local 146 end_col = 1; 154 end_col = 1; 158 for (col = 0; col < end_col; ++col) 179 int end_row, end_col; local 213 end_col = VPXMIN(mb_cols - overlap_mb_col, 2); 221 end_col = 1; 226 for (rel_col = 0; rel_col < end_col; ++rel_col)
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
error_concealment.c | 138 int end_col = MIN(4 + mb_col * 4 - first_blk_col, 2); local 147 end_col = 1; 155 end_col = 1; 159 for (col = 0; col < end_col; ++col) 180 int end_row, end_col; local 214 end_col = MIN(mb_cols - overlap_mb_col, 2); 222 end_col = 1; 227 for (rel_col = 0; rel_col < end_col; ++rel_col)
|
/external/libvterm/include/ |
vterm.h | 34 int end_col; member in struct:__anon16682 41 p.col >= r.start_col && p.col < r.end_col; 48 rect->start_col += col_delta; rect->end_col += col_delta;
|
/external/pdfium/core/src/fxge/ge/ |
fx_ge_text.cpp | 414 int end_col = left + ncols; local 415 if (end_col > dest_width) { 416 end_col = dest_width; 418 if (start_col >= end_col) { 432 for (int col = start_col; col < end_col; col++) { 470 for (int col = start_col + 1; col < end_col - 1; col++) { 511 for (int col = start_col + 1; col < end_col - 1; col++) { 534 for (int col = start_col; col < end_col; col++) { 636 for (int col = start_col + 1; col < end_col; col++) { 738 for (int col = start_col + 1; col < end_col; col++) [all...] |
/packages/apps/Terminal/jni/ |
com_android_terminal_Terminal.cpp | 169 rect.start_col, rect.end_col); 180 dest.start_row, dest.end_row, dest.start_col, dest.end_col, 181 src.start_row, src.end_row, src.start_col, src.end_col);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_mcomp.c | 905 int start_col, end_col; local [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_mcomp.c | 1539 int start_col, end_col, start_row, end_row; local [all...] |
/external/opencv/cxcore/src/ |
cxarray.cpp | [all...] |
/external/opencv3/modules/core/src/ |
array.cpp | [all...] |
/external/opencv/cxcore/include/ |
cxcore.h | 212 /* Selects column span of the input array: arr(:,start_col:end_col) 213 (end_col is not included into the span) */ 215 int start_col, int end_col ); [all...] |
/external/clang/tools/c-index-test/ |
c-index-test.c | [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
core_c.h | 396 @param end_col Zero-based index of the ending column (exclusive) of the span 399 int start_col, int end_col ); [all...] |