Searched refs:col (Results 1 - 25 of 224) sorted by relevance

123456789

/xsrc/external/mit/xterm/dist/
H A Dtabs.c82 * places a tabstop at col
85 TabSet(Tabs tabs, int col) argument
87 if (OkTAB(col)) {
88 SET_TAB(tabs, col);
93 * clears a tabstop at col
96 TabClear(Tabs tabs, int col) argument
98 if (OkTAB(col)) {
99 CLR_TAB(tabs, col);
106 * A tabstop at col is ignored.
109 TabNext(XtermWidget xw, Tabs tabs, int col) argument
132 TabPrev(Tabs tabs,int col) argument
195 TabIsSet(Tabs tabs,int col) argument
[all...]
H A Dsvg.c129 int col, sal, i; /* sal: same attribute length */ local in function:dumpSvgLine
134 for (col = 0; col < MaxCols(s); col += sal) {
138 for (sal = 1; col + sal < MaxCols(s); ++sal) {
140 if (!isSameCColor(ld->color[col], ld->color[col + sal]))
143 if (ld->attribs[col] != ld->attribs[col + sal])
150 if (ld->attribs[col]
[all...]
H A Dhtml.c145 int col; local in function:dumpHtmlLine
150 for (col = 0; col < MaxCols(s); col++) {
152 IChar chr = ld->charData[col];
158 if (ld->attribs[col] & FG_COLOR) {
159 Pixel fg = extract_fg(xw, ld->color[col], ld->attribs[col]);
161 if (ld->attribs[col] & ATR_DIRECT_FG)
167 if (ld->attribs[col]
[all...]
H A Dtestxmc.c186 int col = screen->cur_col; local in function:Resolve_XMC
191 if (ld->charData[col] != XMC_GLITCH) {
192 if (col != 0) {
193 col--;
196 col = LineMaxCol(screen, ld);
199 start = (ld->attribs[col] & my_attrs);
205 if (col < LineMaxCol(screen, ld)) {
206 col++;
208 col = 0;
212 if (ld->charData[col]
[all...]
H A Dlinedata.c103 Dimension col; local in function:copyLineData
111 for (col = 0; col < limit; ++col) {
112 dst->attribs[col] = src->attribs[col];
114 dst->color[col] = src->color[col];
116 dst->charData[col] = src->charData[col];
[all...]
H A Dscreen.c693 CopyCells(TScreen *screen, LineData *src, LineData *dst, int col, int len, Bool down) argument
700 int last = col + len;
711 if (col > 0) {
712 if (dst->charData[col] == HIDDEN_CHAR) {
714 Clear2Cell(dst, src, col - 1);
715 Clear2Cell(dst, src, col);
717 if (src->charData[col] != HIDDEN_CHAR) {
718 Clear2Cell(dst, src, col - 1);
719 Clear2Cell(dst, src, col);
721 fix_l = col
794 ClearCells(XtermWidget xw,int flags,unsigned len,int row,int col) argument
847 ScrnClearCells(XtermWidget xw,int row,int col,unsigned len) argument
1282 int col = screen->cur_col; local in function:ScrnInsertChar
1345 int col = screen->cur_col; local in function:ScrnDeleteChar
1481 intersectsSelection(TScreen * screen,int row,int col,int maxcol) argument
1507 recurseForNotSelectedAndAdjust(XtermWidget xw,int row,int * col,int * maxcol,int force) argument
1608 int col = leftcol; local in function:ScrnRefresh
2431 non_blank_line(TScreen * screen,int row,int col,int len) argument
2479 limitedParseCol(XtermWidget xw,int col) argument
2569 int row, col; local in function:ScrnFillRectangle
2673 int row, col; local in function:ScrnCopyRectangle
2835 int row, col; local in function:ScrnMarkRectangle
2967 int row, col; local in function:ScrnWipeRectangle
3047 int row, col; local in function:xtermCheckRect
[all...]
/xsrc/external/mit/xterm/dist/vttests/
H A Dacs.pl65 for my $col ( 0 .. 5 ) {
66 my $ch = 32 + $row + $col * 16;
68 system( sprintf( "tput cup %d %d", $row, 4 + $col * 12 ) );
/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_bitmap.c54 GLint row, col; local in function:_swrast_Bitmap
84 for (col = 0; col < width; col++) {
86 span.array->x[count] = px + col;
106 for (col = 0; col < width; col++) {
108 span.array->x[count] = px + col;
154 GLint row, col;
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_bitmap.c54 GLint row, col; local in function:_swrast_Bitmap
84 for (col = 0; col < width; col++) {
86 span.array->x[count] = px + col;
106 for (col = 0; col < width; col++) {
108 span.array->x[count] = px + col;
154 GLint row, col;
[all...]
/xsrc/external/mit/ctwm/dist/
H A Dicons_builtin.c42 struct Colori *col; local in function:Create3DMenuIcon
56 for(col = colori; col; col = col->next) {
57 if(col->color == cp.back) {
61 if(col != NULL) {
62 return (col->pix);
64 col = malloc(sizeof(struct Colori));
65 col
180 struct Colori *col; local in function:Create3DIconManagerIcon
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_tile.c44 unsigned col; /* current source column */ local in function:micro_tile_8_x_4_8bit
52 for (col = 0; col < width; col += tile_width, ++k)
54 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
61 unsigned columns = MIN2(tile_width, width - col);
75 unsigned col; /* current source column */ local in function:micro_tile_4_x_4_16bit
83 for (col = 0; col < width; col
106 unsigned col; /* current source column */ local in function:micro_tile_8_x_2_16bit
137 unsigned col; /* current source column */ local in function:micro_tile_4_x_2_32bit
168 unsigned col; /* current source column */ local in function:micro_tile_2_x_2_64bit
258 unsigned col; /* current destination column */ local in function:micro_untile_8_x_4_8bit
291 unsigned col; /* current destination column */ local in function:micro_untile_8_x_2_16bit
324 unsigned col; /* current destination column */ local in function:micro_untile_4_x_4_16bit
357 unsigned col; /* current destination column */ local in function:micro_untile_4_x_2_32bit
390 unsigned col; /* current destination column */ local in function:micro_untile_2_x_2_64bit
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_tile.c44 unsigned col; /* current source column */ local in function:micro_tile_8_x_4_8bit
52 for (col = 0; col < width; col += tile_width, ++k)
54 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
61 unsigned columns = MIN2(tile_width, width - col);
75 unsigned col; /* current source column */ local in function:micro_tile_4_x_4_16bit
83 for (col = 0; col < width; col
106 unsigned col; /* current source column */ local in function:micro_tile_8_x_2_16bit
137 unsigned col; /* current source column */ local in function:micro_tile_4_x_2_32bit
168 unsigned col; /* current source column */ local in function:micro_tile_2_x_2_64bit
258 unsigned col; /* current destination column */ local in function:micro_untile_8_x_4_8bit
291 unsigned col; /* current destination column */ local in function:micro_untile_8_x_2_16bit
324 unsigned col; /* current destination column */ local in function:micro_untile_4_x_4_16bit
357 unsigned col; /* current destination column */ local in function:micro_untile_4_x_2_32bit
390 unsigned col; /* current destination column */ local in function:micro_untile_2_x_2_64bit
[all...]
/xsrc/external/mit/xcb-util/dist/keysyms/
H A Dxcb_keysyms.h20 int col);
38 int col);
42 int col);
/xsrc/external/mit/libX11/dist/src/xlibi18n/lcUniConv/
H A Dcjk_tab_to_h.c38 int (*col_byte) (int col); /* returns the 2nd byte value for a given col */
40 int (*byte_col) (int byte); /* converts a 2nd byte value to a col, else -1 */
44 const char* byte_col_expr; /* format string for 2nd byte value to col */
46 /* You'll understand the terms "row" and "col" when you buy Ken Lunde's book.
47 Once a row is fixed, choosing a "col" is the same as choosing a "cell". */
71 int row, col, i, i1, i2, c, j; local in function:read_table
78 for (col = 0; col < enc->cols; col
137 int row, col; local in function:find_charset2uni_pages
178 int row, col, lastrow, col_max, i, i1_min, i1_max; local in function:output_charset2uni
267 int row, col, j; local in function:invert
294 int row, col, j, p, j1, j2, t; local in function:output_uni2charset_dense
421 int i, row, col, j, p, j1, j2, indx; local in function:output_uni2charset_sparse
542 col_byte_normal(int col) argument
642 col_byte_gbk1(int col) argument
702 col_byte_gbk2(int col) argument
765 int row, col, i, i1, i2, c, j; local in function:read_table_ksc5601
858 col_byte_big5(int col) argument
901 col_byte_big5hkscs(int col) argument
944 col_byte_johab_hangul(int col) argument
987 col_byte_sjis(int col) argument
[all...]
/xsrc/external/mit/libXaw/dist/
H A Dtest-driver122 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
123 0:*) col=$grn res=PASS recheck=no gcopy=no;;
124 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
125 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
126 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
127 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
137 echo "${col}${res}${std}: $test_name"
/xsrc/external/mit/libXdmcp/dist/
H A Dtest-driver122 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
123 0:*) col=$grn res=PASS recheck=no gcopy=no;;
124 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
125 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
126 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
127 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
137 echo "${col}${res}${std}: $test_name"
/xsrc/external/mit/libXmu/dist/
H A Dtest-driver122 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
123 0:*) col=$grn res=PASS recheck=no gcopy=no;;
124 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
125 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
126 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
127 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
137 echo "${col}${res}${std}: $test_name"
/xsrc/external/mit/libXpm/dist/
H A Dtest-driver122 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
123 0:*) col=$grn res=PASS recheck=no gcopy=no;;
124 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
125 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
126 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
127 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
137 echo "${col}${res}${std}: $test_name"
/xsrc/external/mit/makedepend/dist/
H A Dtest-driver122 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
123 0:*) col=$grn res=PASS recheck=no gcopy=no;;
124 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
125 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
126 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
127 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
137 echo "${col}${res}${std}: $test_name"
/xsrc/external/mit/libXt/dist/
H A Dtest-driver122 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
123 0:*) col=$grn res=PASS recheck=no gcopy=no;;
124 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
125 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
126 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
127 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
137 echo "${col}${res}${std}: $test_name"
/xsrc/external/mit/fontconfig/dist/
H A Dtest-driver117 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
118 0:*) col=$grn res=PASS recheck=no gcopy=no;;
119 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
120 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
121 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
122 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
132 echo "${col}${res}${std}: $test_name"
/xsrc/external/mit/libvdpau/dist/
H A Dtest-driver117 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
118 0:*) col=$grn res=PASS recheck=no gcopy=no;;
119 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
120 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
121 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
122 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
132 echo "${col}${res}${std}: $test_name"
/xsrc/external/mit/libxcb/dist/build-aux/
H A Dtest-driver122 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
123 0:*) col=$grn res=PASS recheck=no gcopy=no;;
124 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
125 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
126 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
127 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
137 echo "${col}${res}${std}: $test_name"
/xsrc/external/mit/xorgproto/dist/
H A Dtest-driver122 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
123 0:*) col=$grn res=PASS recheck=no gcopy=no;;
124 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
125 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
126 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
127 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
137 echo "${col}${res}${std}: $test_name"
/xsrc/external/mit/bitmap/dist/
H A Dtest-driver122 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
123 0:*) col=$grn res=PASS recheck=no gcopy=no;;
124 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
125 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
126 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
127 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
137 echo "${col}${res}${std}: $test_name"

Completed in 16 milliseconds

123456789