Searched refs:row (Results 1 - 25 of 335) sorted by relevance

1234567891011>>

/xsrc/external/mit/xterm/dist/vttests/
H A Dacs.pl64 for my $row ( 0 .. 15 ) {
66 my $ch = 32 + $row + $col * 16;
68 system( sprintf( "tput cup %d %d", $row, 4 + $col * 12 ) );
H A DsgrPushPop2.pl171 my $row = shift;
174 $param = 0 if ( ( $row % $cycle ) == 0 );
175 $param = 1 if ( ( $row % $cycle ) == 1 );
176 $param = 2 if ( ( $row % $cycle ) == 2 );
177 $param = 3 if ( ( $row % $cycle ) == 3 );
178 $param = 4 if ( ( $row % $cycle ) == 4 );
179 $param = 5 if ( ( $row % $cycle ) == 5 );
180 $param = 7 if ( ( $row % $cycle ) == 6 );
181 $param = 9 if ( ( $row % $cycle ) == 7 );
182 $param = 21 if ( ( $row
[all...]
/xsrc/external/mit/xcb-util/dist/image/
H A Dxcb_pixel.h127 uint8_t * row = image->data + (y * image->stride); local in function:xcb_image_put_pixel_Z32M
128 row[x << 2] = pixel >> 24;
129 row[(x << 2) + 1] = pixel >> 16;
130 row[(x << 2) + 2] = pixel >> 8;
131 row[(x << 2) + 3] = pixel;
140 uint8_t * row = image->data + (y * image->stride); local in function:xcb_image_put_pixel_Z32L
141 row[x << 2] = pixel;
142 row[(x << 2) + 1] = pixel >> 8;
143 row[(x << 2) + 2] = pixel >> 16;
144 row[(
152 uint8_t * row = image->data + (y * image->stride); local in function:xcb_image_get_pixel_Z32M
164 uint8_t * row = image->data + (y * image->stride); local in function:xcb_image_get_pixel_Z32L
[all...]
H A Dxcb_image.c568 uint8_t *row; local in function:xcb_image_put_pixel
572 row = image->data + (y * image->stride);
579 uint8_t * plane = row;
605 row[x >> 1] = (row[x >> 1] & ~mask) | pixel;
608 row[x] = pixel;
613 row[x << 1] = pixel;
614 row[(x << 1) + 1] = pixel >> 8;
617 row[x << 1] = pixel >> 8;
618 row[(
671 uint8_t *row; local in function:xcb_image_get_pixel
[all...]
/xsrc/external/mit/xterm/dist/
H A Dscrollback.c35 #define REAL_ROW(screen, row) ((row) + (screen)->saved_fifo)
36 #define ROW2FIFO(screen, row) \
37 (unsigned) (REAL_ROW(screen, row) % (screen)->savelines)
40 * Given a row-number, find the corresponding data for the line in the VT100
41 * widget's saved-line FIFO. The row-number (from getLineData) is negative.
45 getScrollback(TScreen *screen, int row) argument
49 if (screen->saved_fifo > 0 && REAL_ROW(screen, row) >= 0) {
50 unsigned which = ROW2FIFO(screen, row);
56 row, ROW2FIF
[all...]
H A Dsvg.c49 static void dumpSvgLine(XtermWidget xw, int row, FILE *fp);
105 int row; local in function:dumpSvgScreen
117 for (row = s->top_marg; row <= s->bot_marg; ++row) {
118 fprintf(fp, " <!-- Row %d -->\n", row);
119 dumpSvgLine(xw, row, fp);
124 dumpSvgLine(XtermWidget xw, int row, FILE *fp) argument
127 int inx = ROW2INX(s, row);
195 + row * CELL
[all...]
H A Dtestxmc.c185 int row = screen->cur_row; local in function:Resolve_XMC
190 ld = getLineData(screen, row);
194 } else if (!screen->xmc_inline && row != 0) {
195 ld = getLineData(screen, --row);
207 } else if (!screen->xmc_inline && row < screen->max_row) {
209 ld = getLineData(screen, ++row);
226 row, col));
229 ScrnUpdate(xw, screen->cur_row, 0, row + 1 - screen->cur_row,
H A Dcursor.c68 CursorSet(TScreen *screen, int row, int col, unsigned flags) argument
70 int use_row = row;
92 row, col,
131 int row = screen->cur_row; local in function:CursorBack
160 if (row == top)
161 row = bottom + 1;
167 if (row <= top) {
169 row = top;
174 if (--row <= 0) {
175 row
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_tile.c43 unsigned row; /* current source row */ local in function:micro_tile_8_x_4_8bit
50 for (row = 0; row < height; row += tile_height)
54 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
55 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
59 for (j = 0; j < MIN2(tile_height, height - row); ++j)
74 unsigned row; /* current source row */ local in function:micro_tile_4_x_4_16bit
105 unsigned row; /* current source row */ local in function:micro_tile_8_x_2_16bit
136 unsigned row; /* current source row */ local in function:micro_tile_4_x_2_32bit
167 unsigned row; /* current source row */ local in function:micro_tile_2_x_2_64bit
257 unsigned row; /* current destination row */ local in function:micro_untile_8_x_4_8bit
290 unsigned row; /* current destination row */ local in function:micro_untile_8_x_2_16bit
323 unsigned row; /* current destination row */ local in function:micro_untile_4_x_4_16bit
356 unsigned row; /* current destination row */ local in function:micro_untile_4_x_2_32bit
389 unsigned row; /* current destination row */ local in function:micro_untile_2_x_2_64bit
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_tile.c43 unsigned row; /* current source row */ local in function:micro_tile_8_x_4_8bit
50 for (row = 0; row < height; row += tile_height)
54 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
55 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
59 for (j = 0; j < MIN2(tile_height, height - row); ++j)
74 unsigned row; /* current source row */ local in function:micro_tile_4_x_4_16bit
105 unsigned row; /* current source row */ local in function:micro_tile_8_x_2_16bit
136 unsigned row; /* current source row */ local in function:micro_tile_4_x_2_32bit
167 unsigned row; /* current source row */ local in function:micro_tile_2_x_2_64bit
257 unsigned row; /* current destination row */ local in function:micro_untile_8_x_4_8bit
290 unsigned row; /* current destination row */ local in function:micro_untile_8_x_2_16bit
323 unsigned row; /* current destination row */ local in function:micro_untile_4_x_4_16bit
356 unsigned row; /* current destination row */ local in function:micro_untile_4_x_2_32bit
389 unsigned row; /* current destination row */ local in function:micro_untile_2_x_2_64bit
[all...]
/xsrc/external/mit/xmh/dist/
H A Dpick.c61 struct _RowListRec *row; /* Which row this widget is in. */ member in struct:__anona7bcb94d0108
66 Widget widget; /* Widget containing this row */
132 static void AddLabel(RowList row, const char *text, int usestd) argument
143 (void) CreateWidget(row, WTlabel, arglist,
148 static void AddButton(RowList row, const char *text, void (*func)(XMH_CB_ARGS)) argument
156 entry = CreateWidget( row, WTbutton, args, XtNumber(args) );
162 RowList row,
177 entry = CreateWidget(row, toggleWidgetClass, args, (Cardinal)n);
183 static void AddTextEntry(RowList row, cons argument
161 AddToggle(RowList row,const char * text,int initial_state,Widget radio_group,XtPointer radio_data) argument
221 RowList row = entry->row; local in function:ExecRowOr
266 ParseRow(RowList row) argument
458 CreateWidget(RowList row,WidgetClass class,ArgList args,Cardinal num_args) argument
500 RowList row = entry->row; local in function:DeleteWidget
532 RowList row; local in function:AddRow
595 RowList row; local in function:AddDetailGroup
619 RowList row; local in function:AddGeneralGroup
653 RowList row; local in function:InitGeneral
664 RowList row; local in function:CleanForm
[all...]
/xsrc/external/mit/libX11/dist/src/xlibi18n/lcUniConv/
H A Dcjk_tab_to_h.c37 int (*row_byte) (int row); /* returns the 1st byte value for a given row */
39 int (*byte_row) (int byte); /* converts a 1st byte value to a row, else -1 */
43 const char* byte_row_expr; /* format string for 1st byte value to row */
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". */
48 int* charsetpage; /* charsetpage[0..rows]: how large is a page for a row */
71 int row, col, i, i1, i2, c, j; local in function:read_table
74 for (row = 0; row < en
137 int row, col; local in function:find_charset2uni_pages
158 int n, row, lastrow; local in function:find_charset2uni_blocks
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
541 row_byte_normal(int row) argument
592 row_byte_cns11643(int row) argument
639 row_byte_gbk1(int row) argument
699 row_byte_gbk2(int row) argument
765 int row, col, i, i1, i2, c, j; local in function:read_table_ksc5601
855 row_byte_big5(int row) argument
898 row_byte_big5hkscs(int row) argument
941 row_byte_johab_hangul(int row) argument
984 row_byte_sjis(int row) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dformat_utils.c193 int row; local in function:convert_ubyte_rgba_to_bgra
203 for (row = 0; row < height; row++) {
224 for (row = 0; row < height; row++) {
285 size_t row; local in function:_mesa_format_convert
322 for (row = 0; row < heigh
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_bitmap.c54 GLint row, col; local in function:_swrast_Bitmap
77 for (row = 0; row < height; row++) {
79 bitmap, width, height, GL_COLOR_INDEX, GL_BITMAP, row, 0);
87 span.array->y[count] = py + row;
99 /* get ready for next row */
109 span.array->y[count] = py + row;
121 /* get ready for next row */
126 if (count + width >= SWRAST_MAX_WIDTH || row
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_bitmap.c54 GLint row, col; local in function:_swrast_Bitmap
77 for (row = 0; row < height; row++) {
79 bitmap, width, height, GL_COLOR_INDEX, GL_BITMAP, row, 0);
87 span.array->y[count] = py + row;
99 /* get ready for next row */
109 span.array->y[count] = py + row;
121 /* get ready for next row */
126 if (count + width >= SWRAST_MAX_WIDTH || row
[all...]
/xsrc/external/mit/MesaLib/dist/bin/
H A Dgen_calendar_entries.py113 for row in range(2, 4):
115 writer.writerow([None, date.isoformat(), f'{major}.{minor}.0-rc{row}', args.manager])
157 for row in range(base + 1, 3):
159 writer.writerow([None, date.isoformat(), f'{args.series}.{row}', args.manager])
174 one we're appending, then it yields the last row. When control is
179 for row in current:
180 if in_wanted and row[0]:
184 if row[0] == args.series:
186 if in_wanted and len(row) >= 5 and row[
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dformat_utils.c203 int row; local in function:convert_ubyte_rgba_to_bgra
213 for (row = 0; row < height; row++) {
234 for (row = 0; row < height; row++) {
295 size_t row; local in function:_mesa_format_convert
332 for (row = 0; row < heigh
[all...]
/xsrc/external/mit/libX11/dist/src/
H A DModMap.c136 row = modifier * map->max_keypermod, local in function:XInsertModifiermapEntry
141 if (map->modifiermap[ row+i ] == keycode)
143 if (map->modifiermap[ row+i ] == 0) {
144 map->modifiermap[ row+i ] = keycode;
152 newrow = row = 0;
156 newmap->modifiermap[ newrow+i ] = map->modifiermap[ row+i ];
158 row += map->max_keypermod;
177 row = modifier * map->max_keypermod; local in function:XDeleteModifiermapEntry
180 if (map->modifiermap[ row+i ] == keycode)
181 map->modifiermap[ row
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_linear_sampler.c93 const uint32_t *row; local in function:fetch_bgra_memcpy
99 row = src_row;
101 memcpy(samp->row, src_row, width * sizeof *row);
102 row = samp->row;
106 return row;
123 uint32_t *row = samp->row; local in function:fetch_bgrx_memcpy
129 row[
157 uint32_t *row = samp->row; local in function:fetch_bgra_axis_aligned
180 uint32_t *row = samp->row; local in function:fetch_bgrx_axis_aligned
205 uint32_t *row = samp->row; local in function:fetch_bgra
237 uint32_t *row = samp->row; local in function:fetch_bgrx
272 uint32_t *row = samp->row; local in function:fetch_bgra_clamp
308 uint32_t *row = samp->row; local in function:fetch_bgrx_clamp
412 uint32_t * restrict row = samp->row; local in function:fetch_bgra_axis_aligned_linear
455 uint32_t *row = samp->row; local in function:fetch_bgra_linear
512 uint32_t *row = samp->row; local in function:fetch_bgra_clamp_linear
638 uint32_t *row = samp->row; local in function:fetch_bgrx_clamp_linear
659 uint32_t *row = samp->row; local in function:fetch_bgrx_linear
[all...]
/xsrc/external/mit/mesa-demos/dist/src/objviewer/
H A Dskybox.c44 GLubyte *row; local in function:load
47 row = img + i * stride;
50 temp[0] = row[j*3+0];
51 temp[1] = row[j*3+1];
52 temp[2] = row[j*3+2];
53 row[j*3+0] = row[k*3+0];
54 row[j*3+1] = row[k*3+1];
55 row[
[all...]
/xsrc/external/mit/mesa-demos/dist/src/trivial/
H A Dsub-tex.c3 * to change one row of the texture image.
58 GLubyte row[16][4]; local in function:Draw
79 row[i][0] = 255;
80 row[i][1] = 0;
81 row[i][2] = 0;
82 row[i][3] = 255;
110 /* replace a row of the texture image with red texels */
113 GL_RGBA, GL_UNSIGNED_BYTE, row);
/xsrc/external/mit/xorg-server.old/dist/xkb/
H A DXKBGAlloc.c252 XkbFreeGeomOverlayKeys(XkbOverlayRowPtr row,int first,int count,Bool freeAll) argument
255 &row->num_keys,&row->sz_keys,
256 (char **)&row->keys,
266 XkbOverlayRowPtr row= (XkbOverlayRowPtr)row_in; local in function:_XkbClearOverlayRow
268 if (row->keys!=NULL)
269 XkbFreeGeomOverlayKeys(row,0,row->num_keys,TRUE);
308 XkbFreeGeomKeys(XkbRowPtr row,int first,int count,Bool freeAll) argument
311 &row
322 XkbRowPtr row= (XkbRowPtr)row_in; local in function:_XkbClearRow
553 XkbAllocGeomOverlayKeys(XkbOverlayRowPtr row,int nKeys) argument
589 XkbAllocGeomKeys(XkbRowPtr row,int nKeys) argument
778 XkbAddGeomKey(XkbRowPtr row) argument
793 XkbRowPtr row; local in function:XkbAddGeomRow
887 XkbAddGeomOverlayKey(XkbOverlayPtr overlay,XkbOverlayRowPtr row,char * over,char * under) argument
925 XkbOverlayRowPtr row; local in function:XkbAddGeomOverlayRow
[all...]
/xsrc/external/mit/libX11/dist/src/xkb/
H A DXKBGAlloc.c254 XkbFreeGeomOverlayKeys(XkbOverlayRowPtr row, int first, int count, Bool freeAll) argument
257 &row->num_keys, &row->sz_keys,
258 (char **) &row->keys,
268 XkbOverlayRowPtr row = (XkbOverlayRowPtr) row_in; local in function:_XkbClearOverlayRow
270 if (row->keys != NULL)
271 XkbFreeGeomOverlayKeys(row, 0, row->num_keys, True);
311 XkbFreeGeomKeys(XkbRowPtr row, int first, int count, Bool freeAll) argument
314 &row
325 XkbRowPtr row = (XkbRowPtr) row_in; local in function:_XkbClearRow
565 XkbAllocGeomOverlayKeys(XkbOverlayRowPtr row,int nKeys) argument
601 XkbAllocGeomKeys(XkbRowPtr row,int nKeys) argument
788 XkbAddGeomKey(XkbRowPtr row) argument
804 XkbRowPtr row; local in function:XkbAddGeomRow
900 XkbAddGeomOverlayKey(XkbOverlayPtr overlay,XkbOverlayRowPtr row,_Xconst char * over,_Xconst char * under) argument
939 XkbOverlayRowPtr row; local in function:XkbAddGeomOverlayRow
[all...]
/xsrc/external/mit/xorg-server/dist/xkb/
H A DXKBGAlloc.c242 XkbFreeGeomOverlayKeys(XkbOverlayRowPtr row, int first, int count, Bool freeAll) argument
245 &row->num_keys, &row->sz_keys,
246 (char **) &row->keys, sizeof(XkbOverlayKeyRec));
253 XkbFreeGeomKeys(XkbRowPtr row, int first, int count, Bool freeAll) argument
256 &row->num_keys, &row->sz_keys,
257 (char **) &row->keys, sizeof(XkbKeyRec));
266 XkbRowPtr row = (XkbRowPtr) row_in; local in function:_XkbClearRow
268 if (row
681 XkbAddGeomKey(XkbRowPtr row) argument
697 XkbRowPtr row; local in function:XkbAddGeomRow
790 XkbAddGeomOverlayKey(XkbOverlayPtr overlay,XkbOverlayRowPtr row,char * over,char * under) argument
827 XkbOverlayRowPtr row; local in function:XkbAddGeomOverlayRow
[all...]
/xsrc/external/mit/mesa-demos/dist/src/glsl/
H A Dtexdemo1.c286 GLubyte *row; local in function:LoadFace
289 row = img + i * stride;
292 temp[0] = row[j*3+0];
293 temp[1] = row[j*3+1];
294 temp[2] = row[j*3+2];
295 row[j*3+0] = row[k*3+0];
296 row[j*3+1] = row[k*3+1];
297 row[
[all...]

Completed in 20 milliseconds

1234567891011>>