Home
last modified time | relevance | path

Searched refs:ypixel (Results 1 – 25 of 124) sorted by relevance

12345

/dports/sysutils/tmux/tmux-3.2a/
H A Dresize.c53 window_resize(w, sx, sy, xpixel, ypixel); in resize_window()
114 u_int *xpixel, u_int *ypixel) in clients_calculate_size() argument
133 *xpixel = *ypixel = 0; in clients_calculate_size()
182 if (loop->tty.xpixel > *xpixel && loop->tty.ypixel > *ypixel) { in clients_calculate_size()
184 *ypixel = loop->tty.ypixel; in clients_calculate_size()
222 u_int *sx, u_int *sy, u_int *xpixel, u_int *ypixel, int type) in default_window_size() argument
239 *ypixel = c->tty.ypixel; in default_window_size()
291 u_int sx, sy, xpixel = 0, ypixel = 0; in recalculate_size() local
312 recalculate_size_skip_client, &sx, &sy, &xpixel, &ypixel); in recalculate_size()
342 resize_window(w, sx, sy, xpixel, ypixel); in recalculate_size()
[all …]
H A Dcmd-resize-window.c57 int xpixel = -1, ypixel = -1; in cmd_resize_window_exec() local
103 default_window_size(NULL, s, w, &sx, &sy, &xpixel, &ypixel, in cmd_resize_window_exec()
106 default_window_size(NULL, s, w, &sx, &sy, &xpixel, &ypixel, in cmd_resize_window_exec()
111 resize_window(w, sx, sy, xpixel, ypixel); in cmd_resize_window_exec()
H A Dwindow.c298 window_create(u_int sx, u_int sy, u_int xpixel, u_int ypixel) in window_create() argument
304 if (ypixel == 0) in window_create()
305 ypixel = DEFAULT_YPIXEL; in window_create()
320 w->ypixel = ypixel; in window_create()
333 w->xpixel, w->ypixel); in window_create()
413 if (ypixel == 0) in window_resize()
414 ypixel = DEFAULT_YPIXEL; in window_resize()
418 ypixel == -1 ? w->ypixel : (u_int)ypixel); in window_resize()
423 if (ypixel != -1) in window_resize()
424 w->ypixel = ypixel; in window_resize()
[all …]
/dports/math/vtk6/VTK-6.2.0/ThirdParty/Twisted/twisted/conch/ssh/
H A Dsession.py319 cols, rows, xpixel, ypixel = struct.unpack('>4L', rest[: 16])
321 winSize = (rows, cols, xpixel, ypixel)
325 def packRequest_pty_req(term, (rows, cols, xpixel, ypixel), modes): argument
331 winSizePacked = struct.pack('>4L', cols, rows, xpixel, ypixel)
340 cols, rows, xpixel, ypixel = struct.unpack('>4L', data)
341 return rows, cols, xpixel, ypixel
343 def packRequest_window_change((rows, cols, xpixel, ypixel)): argument
346 return struct.pack('>4L', cols, rows, xpixel, ypixel)
/dports/games/libretro-cap32/libretro-cap32-ad7397f/libretro/nukleargui/retro/
H A Dretro_surface.c383 signed short int ypixel; in Retro_Draw_string() local
388 signed int ypixel; in Retro_Draw_string() local
449 for(ypixel = 0; ypixel<8; ypixel++) { in Retro_Draw_string()
453 b = font_array[(string[col]^0x80)*8 + ypixel]; in Retro_Draw_string()
496 signed short int ypixel; in Retro_Draw_char() local
501 signed int ypixel; in Retro_Draw_char() local
563 for(ypixel = 0; ypixel<8; ypixel++) { in Retro_Draw_char()
567 b = font_array[(string^0x80)*8 + ypixel]; in Retro_Draw_char()
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/conch/ssh/
H A Dsession.py401 cols, rows, xpixel, ypixel = struct.unpack(">4L", rest[:16])
403 winSize = (rows, cols, xpixel, ypixel)
420 (rows, cols, xpixel, ypixel) = geometry
422 winSizePacked = struct.pack(">4L", cols, rows, xpixel, ypixel)
432 cols, rows, xpixel, ypixel = struct.unpack(">4L", data)
433 return rows, cols, xpixel, ypixel
443 (rows, cols, xpixel, ypixel) = geometry
444 return struct.pack(">4L", cols, rows, xpixel, ypixel)
/dports/games/libretro-xrick/xrick-libretro-0aad6c6/libretro/sdl_wrapp/
H A Dsdl_primitives.c356 signed int ypixel;
374 for(ypixel = 0; ypixel<8; ypixel++)
379 b = font_array[(string[col]^0x80)*8 + ypixel];
415 for(ypixel = 0; ypixel<8; ypixel++)
421 b = font_array[(string[col]^0x80)*8 + ypixel];
H A Dsdl_primitives_32b.c184 signed int ypixel; in SDL_DrawString() local
202 for(ypixel = 0; ypixel<8; ypixel++) in SDL_DrawString()
208 b = font_array[(string[col]^0x80)*8 + ypixel]; in SDL_DrawString()
/dports/games/libretro-uae/libretro-uae-8333daa/libretro/
H A Dgraph.c393 signed short int ypixel; in Draw_string() local
412 for(ypixel = 0; ypixel<8; ypixel++) in Draw_string()
416 b = font_array[(((unsigned char)string[col])^0x80)*8 + ypixel]; in Draw_string()
446 signed short int ypixel; in Draw_string32() local
465 for(ypixel = 0; ypixel<8; ypixel++) in Draw_string32()
469 b = font_array[(((unsigned char)string[col])^0x80)*8 + ypixel]; in Draw_string32()
/dports/emulators/libretro-vice/vice-libretro-5725415/libretro/
H A Dlibretro-graph.c354 signed short int ypixel; in Draw_string() local
413 for (ypixel = 0; ypixel < 8; ypixel++) in Draw_string()
417 b = font_array[(string[col]^0x80)*8 + ypixel]; in Draw_string()
451 signed short int ypixel; in Draw_string32() local
513 for (ypixel = 0; ypixel < 8; ypixel++) in Draw_string32()
517 b = font_array[(string[col]^0x80)*8 + ypixel]; in Draw_string32()
/dports/games/libretro-hatari/hatari-561c07e/libretro/
H A Dgraph.c174 signed short int ypixel; in Draw_string() local
188 for(ypixel = 0; ypixel<8; ypixel++) in Draw_string()
192 b = font_array[(string[col]^0x80)*8 + ypixel]; in Draw_string()
/dports/chinese/eterm/Eterm-0.9.6/src/
H A Dscreen.c1964 ypixel = ascent + Row2Pixel(row); in scr_refresh()
1996 … UPDATE_BOX(xpixel, ypixel - ascent, xpixel + Width2Pixel(1), ypixel + Height2Pixel(1)); in scr_refresh()
1999 … UPDATE_BOX(xpixel + 1, ypixel - ascent, xpixel + 1 + Width2Pixel(1), ypixel + Height2Pixel(1)); in scr_refresh()
2010 yy = ypixel - ascent; in scr_refresh()
2090 … UPDATE_BOX(xpixel, ypixel - ascent, xpixel + Width2Pixel(wlen), ypixel + Height2Pixel(1)); in scr_refresh()
2120 … UPDATE_BOX(xpixel, ypixel - ascent, xpixel + Width2Pixel(wlen), ypixel + Height2Pixel(1)); in scr_refresh()
2127 … UPDATE_BOX(xpixel + 1, ypixel - ascent, xpixel + 1 + Width2Pixel(wlen), ypixel + Height2Pixel(1)); in scr_refresh()
2133 UPDATE_BOX(xpixel, ypixel + 1, xpixel + Width2Pixel(wlen) - 1, ypixel + 1); in scr_refresh()
2136 UPDATE_BOX(xpixel, ypixel - 1, xpixel + Width2Pixel(wlen) - 1, ypixel - 1); in scr_refresh()
2143 UPDATE_BOX(xpixel, ypixel + 1, xpixel + Width2Pixel(wlen) - 1, ypixel + 1); in scr_refresh()
[all …]
/dports/x11/eterm/Eterm-0.9.6/src/
H A Dscreen.c1964 ypixel = ascent + Row2Pixel(row); in scr_refresh()
1996 … UPDATE_BOX(xpixel, ypixel - ascent, xpixel + Width2Pixel(1), ypixel + Height2Pixel(1)); in scr_refresh()
1999 … UPDATE_BOX(xpixel + 1, ypixel - ascent, xpixel + 1 + Width2Pixel(1), ypixel + Height2Pixel(1)); in scr_refresh()
2010 yy = ypixel - ascent; in scr_refresh()
2090 … UPDATE_BOX(xpixel, ypixel - ascent, xpixel + Width2Pixel(wlen), ypixel + Height2Pixel(1)); in scr_refresh()
2120 … UPDATE_BOX(xpixel, ypixel - ascent, xpixel + Width2Pixel(wlen), ypixel + Height2Pixel(1)); in scr_refresh()
2127 … UPDATE_BOX(xpixel + 1, ypixel - ascent, xpixel + 1 + Width2Pixel(wlen), ypixel + Height2Pixel(1)); in scr_refresh()
2133 UPDATE_BOX(xpixel, ypixel + 1, xpixel + Width2Pixel(wlen) - 1, ypixel + 1); in scr_refresh()
2136 UPDATE_BOX(xpixel, ypixel - 1, xpixel + Width2Pixel(wlen) - 1, ypixel - 1); in scr_refresh()
2143 UPDATE_BOX(xpixel, ypixel + 1, xpixel + Width2Pixel(wlen) - 1, ypixel + 1); in scr_refresh()
[all …]
/dports/japanese/eterm/Eterm-0.9.6/src/
H A Dscreen.c1964 ypixel = ascent + Row2Pixel(row); in scr_refresh()
1996 … UPDATE_BOX(xpixel, ypixel - ascent, xpixel + Width2Pixel(1), ypixel + Height2Pixel(1)); in scr_refresh()
1999 … UPDATE_BOX(xpixel + 1, ypixel - ascent, xpixel + 1 + Width2Pixel(1), ypixel + Height2Pixel(1)); in scr_refresh()
2010 yy = ypixel - ascent; in scr_refresh()
2090 … UPDATE_BOX(xpixel, ypixel - ascent, xpixel + Width2Pixel(wlen), ypixel + Height2Pixel(1)); in scr_refresh()
2120 … UPDATE_BOX(xpixel, ypixel - ascent, xpixel + Width2Pixel(wlen), ypixel + Height2Pixel(1)); in scr_refresh()
2127 … UPDATE_BOX(xpixel + 1, ypixel - ascent, xpixel + 1 + Width2Pixel(wlen), ypixel + Height2Pixel(1)); in scr_refresh()
2133 UPDATE_BOX(xpixel, ypixel + 1, xpixel + Width2Pixel(wlen) - 1, ypixel + 1); in scr_refresh()
2136 UPDATE_BOX(xpixel, ypixel - 1, xpixel + Width2Pixel(wlen) - 1, ypixel - 1); in scr_refresh()
2143 UPDATE_BOX(xpixel, ypixel + 1, xpixel + Width2Pixel(wlen) - 1, ypixel + 1); in scr_refresh()
[all …]
/dports/astro/p5-Starlink-AST/Starlink-AST-1.05/t/
H A Dfitschan.t37 my $ypixel = \@y;
46 my ( $xworld, $yworld) = $wcsinfo->Tran2( $xpixel, $ypixel, 1 );
58 ($xworld, $yworld) = $wcsinfo->Tran2( $xpixel, $ypixel, 0 );
/dports/astro/p5-Astro-FITS-Header/Astro-FITS-Header-3.08/t/
H A Dast.t51 my $ypixel = \@y;
59 my ( $xworld, $yworld) = $wcsinfo->Tran2( $xpixel, $ypixel, 1 );
70 ($xworld, $yworld) = $wcsinfo->Tran2( $xpixel, $ypixel, 0 );
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/opengl/shaders/
H A DareaScaleFragmentShader.glsl143 int ypixel[ 16 + 2 ];
192 ypixel[ ypos ] = sy1 - 1;
198 ypixel[ ypos ] = sy;
204 ypixel[ ypos ] = sy2;
211 int ystart = ypixel[ 0 ];
212 int yend = ypixel[ ypos - 1 ];
/dports/net/xrdp-devel/xrdp-0.9.16/libxrdp/
H A Dxrdp_bitmap_compress.c625 (last_line != 0 && pixel == ypixel))
628 (last_line != 0 && pixel == (ypixel ^ mix)))
672 int ypixel; in xrdp_bitmap_compress() local
723 IN_PIXEL8(last_line, i, 0, width, last_ypixel, ypixel); in xrdp_bitmap_compress()
854 if (pixel == (ypixel ^ mix)) in xrdp_bitmap_compress()
865 last_ypixel = ypixel; in xrdp_bitmap_compress()
1015 IN_PIXEL16(last_line, i, 0, width, last_ypixel, ypixel); in xrdp_bitmap_compress()
1146 if (pixel == (ypixel ^ mix)) in xrdp_bitmap_compress()
1157 last_ypixel = ypixel; in xrdp_bitmap_compress()
1438 if (pixel == (ypixel ^ mix)) in xrdp_bitmap_compress()
[all …]
/dports/x11-drivers/xorgxrdp/xrdp-0.9.17/libxrdp/
H A Dxrdp_bitmap_compress.c625 (last_line != 0 && pixel == ypixel))
628 (last_line != 0 && pixel == (ypixel ^ mix)))
672 int ypixel; in xrdp_bitmap_compress() local
723 IN_PIXEL8(last_line, i, 0, width, last_ypixel, ypixel); in xrdp_bitmap_compress()
854 if (pixel == (ypixel ^ mix)) in xrdp_bitmap_compress()
865 last_ypixel = ypixel; in xrdp_bitmap_compress()
1015 IN_PIXEL16(last_line, i, 0, width, last_ypixel, ypixel); in xrdp_bitmap_compress()
1146 if (pixel == (ypixel ^ mix)) in xrdp_bitmap_compress()
1157 last_ypixel = ypixel; in xrdp_bitmap_compress()
1438 if (pixel == (ypixel ^ mix)) in xrdp_bitmap_compress()
[all …]
/dports/graphics/xfractint/xfractint-20.04p16/common/
H A Djb.c18 static long xpixel, ypixel; variable
180 jy = multiply(Per->y - ypixel, initz, 16); in jb_per_pixel()
181 jy = divide(jy, dist, 16) - ypixel; in jb_per_pixel()
185 djy = multiply(djy, Per->y - ypixel, 16) << (bitshift - 16); in jb_per_pixel()
212 ypixel = y; in zline()
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/lib/
H A DReadKeyMini.pm163 ( $rows, $cols, my ( $xpixel, $ypixel ) ) = unpack( 'S4', $winsize );
164 return ( $cols, $rows, $xpixel, $ypixel );
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/burn/drv/psikyo/
H A Dpsikyosh_render.cpp255 for (INT32 ypixel = 0; ypixel < 16; ypixel++, gfxptr += 4) { in draw_prezoom() local
278 for (INT32 ypixel = 0; ypixel < 16; ypixel++, gfxptr += 8) in draw_prezoom() local
/dports/games/libretro-fbalpha/fbalpha-84eb9d9/src/burn/drv/psikyo/
H A Dpsikyosh_render.cpp255 for (INT32 ypixel = 0; ypixel < 16; ypixel++, gfxptr += 4) { in draw_prezoom() local
278 for (INT32 ypixel = 0; ypixel < 16; ypixel++, gfxptr += 8) in draw_prezoom() local
/dports/games/libretro-2048/libretro-2048-35a299c/
H A Dgame_noncairo.c83 signed int ypixel; in Draw_string() local
113 for(ypixel = 0; ypixel < 8; ypixel++) in Draw_string()
117 b = font_array[(string[col]^0x80)*8 + ypixel]; in Draw_string()
/dports/net/freerdp/freerdp-2.5.0/libfreerdp/codec/
H A Dbitmap.c442 #define TEST_FILL ((last_line == 0 && pixel == 0) || (last_line != 0 && pixel == ypixel))
443 #define TEST_MIX ((last_line == 0 && pixel == mix) || (last_line != 0 && pixel == (ypixel ^ mix)))
504 const UINT32 ypixel = IN_PIXEL32(last_line, j, 0, width, last_ypixel); in freerdp_bitmap_compress_24() local
628 if (pixel == (ypixel ^ mix)) in freerdp_bitmap_compress_24()
641 last_ypixel = ypixel; in freerdp_bitmap_compress_24()
810 const UINT16 ypixel = IN_PIXEL16(last_line, j, 0, width, last_ypixel); in freerdp_bitmap_compress_16() local
934 if (pixel == (ypixel ^ mix)) in freerdp_bitmap_compress_16()
945 last_ypixel = ypixel; in freerdp_bitmap_compress_16()

12345