Home
last modified time | relevance | path

Searched refs:s_height (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/dports/games/zangband/zangband/src/
H A Dmain-vcs.c107 static byte s_width,s_height; variable
208 cursor[1] = s_height - 1; in leave_vcs()
281 write(fd_vcsa,screen,2 * s_width * s_height); in Term_xtra_vcs()
424 x1>=s_width || y1>=s_height || num_term==MAX_VCS_TERM) in term_data_link()
500 s_width=s_height=0; in init_vcs()
501 read(fd_vcsa,&s_height,1); in init_vcs()
506 screen=malloc((s_height+1)*s_width*2); in init_vcs()
515 for (cc=screen,i=0;i<s_width*(s_height+1);i++) in init_vcs()
520 row_clear=&screen[s_height*s_width*2]; in init_vcs()
561 if (s_width==132 && s_height==60) in init_vcs()
[all …]
/dports/games/netrek-client-cow/netrek-client-cow-3.3.2/
H A Dgetship.c32 shipvals[SCOUT].s_height = 20; /* scout: */ in getshipdefaults()
44 shipvals[DESTROYER].s_height = 20; /* destroyer: */ in getshipdefaults()
57 shipvals[BATTLESHIP].s_height = 20; /* battleship: */ in getshipdefaults()
70 shipvals[ASSAULT].s_height = 20; /* assault */ in getshipdefaults()
83 shipvals[STARBASE].s_height = 20; /* starbase */ in getshipdefaults()
96 shipvals[ATT].s_height = 28; /* att: */ in getshipdefaults()
109 shipvals[SGALAXY].s_height = 20; /* galaxy: */ in getshipdefaults()
122 shipvals[CRUISER].s_height = 20; /* cruiser: */ in getshipdefaults()
/dports/net/mosh/mosh-1.3.2/src/terminal/
H A Dterminalframebuffer.cc75 DrawState::DrawState( int s_width, int s_height ) in DrawState() argument
76 : width( s_width ), height( s_height ), in DrawState()
89 Framebuffer::Framebuffer( int s_width, int s_height ) in Framebuffer() argument
92 assert( s_height > 0 ); in Framebuffer()
417 assert( s_height > 0 ); in resize()
421 ds.resize( s_width, s_height ); in resize()
424 if ( oldheight != s_height ) { in resize()
425 rows.resize( s_height, blankrow ); in resize()
442 || (height != s_height) ) { in resize()
447 scrolling_region_bottom_row = s_height - 1; in resize()
[all …]
H A Dterminal.cc43 Emulator::Emulator( size_t s_width, size_t s_height ) in Emulator() argument
44 : fb( s_width, s_height ), dispatch(), user() in Emulator()
175 void Emulator::resize( size_t s_width, size_t s_height ) in resize() argument
177 fb.resize( s_width, s_height ); in resize()
/dports/games/avp/avp-20170505/src/avp/win95/
H A Dpcmenus.cpp651 unsigned int s_height; in SetGameVideoMode() local
700 s_height = vidmode[d3d_opt].Height; in SetGameVideoMode()
707 s_height = vmPtr->Height; in SetGameVideoMode()
741 ScreenDescriptorBlock.SDB_Height = s_height; in SetGameVideoMode()
744 ScreenDescriptorBlock.SDB_DiagonalWidth = sqrt((float)s_width*s_width+s_height*s_height)+0.5; in SetGameVideoMode()
747 ScreenDescriptorBlock.SDB_CentreY = s_height/2; in SetGameVideoMode()
761 ScreenDescriptorBlock.SDB_ClipDown = s_height; in SetGameVideoMode()
813 switch (s_height) in SetGameVideoMode()
836 if (480==s_height) switch (VideoModeTypeScreen) in SetGameVideoMode()
853 if (600==s_height) switch (VideoModeTypeScreen) in SetGameVideoMode()
[all …]
/dports/graphics/fpc-hermes/fpc-3.2.2/packages/hermes/src/
H A Dp_ga.inc72 Dec(iface^.s_height);
112 Dec(iface^.s_height);
178 Dec(iface^.s_height);
212 Dec(iface^.s_height);
248 Dec(iface^.s_height);
290 Dec(iface^.s_height);
326 Dec(iface^.s_height);
362 Dec(iface^.s_height);
396 Dec(iface^.s_height);
436 Dec(iface^.s_height);
[all …]
H A Dp_g.inc70 Dec(iface^.s_height);
108 Dec(iface^.s_height);
168 Dec(iface^.s_height);
200 Dec(iface^.s_height);
234 Dec(iface^.s_height);
274 Dec(iface^.s_height);
308 Dec(iface^.s_height);
342 Dec(iface^.s_height);
374 Dec(iface^.s_height);
412 Dec(iface^.s_height);
[all …]
/dports/lang/fpc-source/fpc-3.2.2/packages/hermes/src/
H A Dp_ga.inc72 Dec(iface^.s_height);
112 Dec(iface^.s_height);
178 Dec(iface^.s_height);
212 Dec(iface^.s_height);
248 Dec(iface^.s_height);
290 Dec(iface^.s_height);
326 Dec(iface^.s_height);
362 Dec(iface^.s_height);
396 Dec(iface^.s_height);
436 Dec(iface^.s_height);
[all …]
H A Dp_g.inc70 Dec(iface^.s_height);
108 Dec(iface^.s_height);
168 Dec(iface^.s_height);
200 Dec(iface^.s_height);
234 Dec(iface^.s_height);
274 Dec(iface^.s_height);
308 Dec(iface^.s_height);
342 Dec(iface^.s_height);
374 Dec(iface^.s_height);
412 Dec(iface^.s_height);
[all …]
/dports/graphics/processing/processing-1.5.1/modes/android/examples/Topics/Simulate/Spring/
H A DSpring.pde8 int s_height = 16; // Height
48 rect(width/2 - b_width, ps + s_height, width/2 + b_width, 150);
56 rect(left, ps, right, ps + s_height);
74 if(mouseX > left && mouseX < right && mouseY > ps && mouseY < ps + s_height) {
82 ps = mouseY - s_height/2;
/dports/graphics/processing/processing-1.5.1/modes/java/examples/Topics/Simulate/Spring/
H A DSpring.pde8 int s_height = 16; // Height
48 rect(width/2 - b_width, ps + s_height, width/2 + b_width, 150);
56 rect(left, ps, right, ps + s_height);
74 if(mouseX > left && mouseX < right && mouseY > ps && mouseY < ps + s_height) {
82 ps = mouseY - s_height/2;
/dports/graphics/Hermes/Hermes-1.3.3/src/
H A Dx86_main.S28 .equ s_height, 8 define
54 movl s_height(%ebp),%eax
66 movl $0,s_height(%ebp)
81 movl s_height(%ebp),%eax
93 movl %ebx,s_height(%ebp)
122 decl s_height(%ebp)
/dports/graphics/Hermes/Hermes-1.3.3/src/nasm/
H A Dx86_main.asm28 s_height equ 8 define
54 mov eax,[ebp+s_height]
66 mov [ebp+s_height],DWORD 0
81 mov eax,[ebp+s_height]
93 mov [ebp+s_height],ebx
122 dec dword [ebp+s_height]
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/
H A DAVIDump.cpp59 static int s_height; variable
81 s_height = h; in Start()
137 s_codec_context->height = s_height; in CreateAVI()
159 s_scaled_frame->height = s_height; in CreateAVI()
213 s_src_frame->height = s_height; in AddFrame()
216 …if ((s_sws_context = sws_getCachedContext(s_sws_context, w, h, AV_PIX_FMT_RGB24, s_width, s_height in AddFrame()
222 s_scaled_frame->height = s_height; in AddFrame()
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/
H A DAVIDump.cpp59 static int s_height; variable
81 s_height = h; in Start()
137 s_codec_context->height = s_height; in CreateAVI()
159 s_scaled_frame->height = s_height; in CreateAVI()
213 s_src_frame->height = s_height; in AddFrame()
216 …if ((s_sws_context = sws_getCachedContext(s_sws_context, w, h, AV_PIX_FMT_RGB24, s_width, s_height in AddFrame()
222 s_scaled_frame->height = s_height; in AddFrame()
/dports/multimedia/transcode/transcode-1.1.7/import/
H A Ddecode_mov.c69 …int s_width=0,s_height=0,s_channel=0,s_bits=0,s_buff_size=0,s_audio_size=0,s_video_size=0,s_sample… in decode_mov() local
192 s_height = quicktime_video_height(qt_handle, 0); in decode_mov()
202 p_v_codec, s_fps, s_width, s_height); in decode_mov()
227 p_raw_buffer = tc_malloc(s_height * sizeof(char *)); in decode_mov()
231 s_buff_size = 3 * s_height * s_width; in decode_mov()
238 for (s_cont = 0; s_cont < s_height; s_cont++) { in decode_mov()
260 s_buff_size = (3 * s_height * s_width)/2; in decode_mov()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Core/
H A DAVIDump.cpp59 static int s_height; variable
81 s_height = h; in Start()
137 s_codec_context->height = s_height; in CreateAVI()
159 s_scaled_frame->height = s_height; in CreateAVI()
213 s_src_frame->height = s_height; in AddFrame()
216 …if ((s_sws_context = sws_getCachedContext(s_sws_context, w, h, AV_PIX_FMT_RGB24, s_width, s_height in AddFrame()
222 s_scaled_frame->height = s_height; in AddFrame()
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/media/jai/opimage/
H A DRotateCRIF.java337 float s_height = (float)source.getHeight(); in getBounds2D() local
339 float y1 = y0 + s_height - 1; in getBounds2D()
349 tx0 = s_height - y1 - 1; in getBounds2D()
351 tx1 = s_height - y0 - 1; in getBounds2D()
372 ty0 = s_height - y1 - 1; in getBounds2D()
374 ty1 = s_height - y0 - 1; in getBounds2D()
395 tx0 = s_height - y1 - 1; in getBounds2D()
397 tx1 = s_height - y0 - 1; in getBounds2D()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/VideoCommon/
H A DFrameDump.cpp49 static int s_height; variable
88 s_height = h; in Start()
191 s_codec_context->height = s_height; in CreateVideoFile()
212 s_scaled_frame->height = s_height; in CreateVideoFile()
237 OSD::AddMessage(fmt::format("Dumping Frames to \"{}\" ({}x{})", dump_path, s_width, s_height)); in CreateVideoFile()
318 s_src_frame->height = s_height; in AddFrame()
322 sws_getCachedContext(s_sws_context, width, height, s_pix_fmt, s_width, s_height, in AddFrame()
439 if ((width != s_width || height != s_height) && (width > 0 && height > 0)) in CheckResolution()
/dports/graphics/tiled/tiled-1.7.2/src/libtiledquick/
H A Dtilesnode.cpp68 const float s_height = data.height * s_y; in processTileData() local
82 v[1].ty = s_ty + s_height; in processTileData()
95 v[3].ty = s_ty + s_height; v[4].ty = s_ty + s_height; in processTileData()
/dports/multimedia/cheese/cheese-41.1/libcheese/
H A Dcheese-widget.c109 guint s_width, s_height, d_width, d_height; in cheese_widget_logo_draw() local
136 s_height = gdk_pixbuf_get_height (pixbuf); in cheese_widget_logo_draw()
138 if ((gfloat) d_width / s_width > (gfloat) d_height / s_height) in cheese_widget_logo_draw()
140 ratio = (gfloat) d_height / s_height; in cheese_widget_logo_draw()
148 s_height *= ratio; in cheese_widget_logo_draw()
150 logo = gdk_pixbuf_scale_simple (pixbuf, s_width, s_height, GDK_INTERP_BILINEAR); in cheese_widget_logo_draw()
152 …set_source_pixbuf (cr, logo, (allocation.width - s_width) / 2, (allocation.height - s_height) / 2); in cheese_widget_logo_draw()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/libjava/gnu/java/awt/peer/gtk/
H A DGtkImagePainter.java59 int s_width, s_height; field in GtkImagePainter
75 s_width = s_height = 0; in GtkImagePainter()
105 s_height = Math.abs (sy2 - sy1); in GtkImagePainter()
106 clip = new Rectangle (sx1, sy1, s_width, s_height); in GtkImagePainter()
199 affine[3] = this.height / (double) s_height; in setDimensions()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/libjava/gnu/java/awt/peer/gtk/
H A DGtkImagePainter.java59 int s_width, s_height; field in GtkImagePainter
75 s_width = s_height = 0; in GtkImagePainter()
105 s_height = Math.abs (sy2 - sy1); in GtkImagePainter()
106 clip = new Rectangle (sx1, sy1, s_width, s_height); in GtkImagePainter()
199 affine[3] = this.height / (double) s_height; in setDimensions()
/dports/x11-wm/ratpoison/ratpoison-1.4.9/src/
H A Dframe.c230 int s_height = -1; in frame_read() local
266 read_slot(s_height); in frame_read()
298 if (s_height > 0) in frame_read()
300 f->y = (f->y*screen->height)/s_height; in frame_read()
301 f->height = (f->height*screen->height)/s_height; in frame_read()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/media/platform/
H A Dm2m-deinterlace.c221 s_height = s_q_data->height; in deinterlace_issue_dma()
222 s_size = s_width * s_height; in deinterlace_issue_dma()
235 ctx->xt->numf = s_height / 2; in deinterlace_issue_dma()
242 ctx->xt->numf = s_height / 2; in deinterlace_issue_dma()
249 ctx->xt->numf = s_height / 4; in deinterlace_issue_dma()
256 ctx->xt->numf = s_height / 4; in deinterlace_issue_dma()
263 ctx->xt->numf = s_height / 4; in deinterlace_issue_dma()
270 ctx->xt->numf = s_height / 4; in deinterlace_issue_dma()
277 ctx->xt->numf = s_height / 2; in deinterlace_issue_dma()
284 ctx->xt->numf = s_height / 4; in deinterlace_issue_dma()
[all …]

12345678910>>...12