HomeSort by relevance Sort by last modified time
    Searched refs:end_col (Results 1 - 15 of 15) sorted by null

  /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 136 int end_col = MIN(4 + mb_col * 4 - first_blk_col, 2); local
145 end_col = 1;
153 end_col = 1;
157 for (col = 0; col < end_col; ++col)
178 int end_row, end_col; local
212 end_col = MIN(mb_cols - overlap_mb_col, 2);
220 end_col = 1;
225 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:__anon13953
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 339 int end_col = left + ncols; local
340 if (end_col > dest_width) {
341 end_col = dest_width;
343 if (start_col >= end_col) {
356 for (int col = start_col; col < end_col; col ++) {
388 for (int col = start_col + 1; col < end_col - 1; col ++) {
423 for (int col = start_col + 1; col < end_col - 1; col ++) {
443 for (int col = start_col; col < end_col; col ++) {
528 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);
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 791 int start_col, end_col, start_row, end_row; local
806 end_col = MIN(range, x->mv_col_max - ref_mv->col);
809 for (c = start_col; c <= end_col; c += 4) {
810 if (c + 3 <= end_col) {
832 for (i = 0; i < end_col - c; ++i)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_mcomp.c 905 int start_col, end_col; local
    [all...]
  /external/opencv/cxcore/src/
cxarray.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...]

Completed in 750 milliseconds