search for: ysize

Displaying 7 results from an estimated 7 matches for "ysize".

Did you mean: size
2002 Oct 01
2
Does R have graphlets?
I've been experimenting some with the graphlets which S-Plus 6.1 has. Is there something similar in R? I've looked through documentations, and at SJava, but haven't found it. (If you don't know what a graphlet is, here's what it appears to be: a graphlet is a binary file that encodes information about a graph. Java uses spgraph.jar to display the graph and allow certain
2008 Nov 22
0
[PATCH] ppmtolss color need to be quoted
...rrggbb=i' ...] < input.ppm > output.rle ## -## Command line options of the form #rrggbb=i indicate that +## Command line options of the form '#rrggbb=i' indicate that ## the color #rrggbb (hex) should be assigned index i (decimal) ## @@ -237,7 +237,7 @@ for ( $y = 0 ; $y < $ysize ; $y++ ) { } } -# Sort list of colors according to freqency +# Sort list of colors according to frequency @colors = sort { $color_count{$b} <=> $color_count{$a} } keys(%color_count); # Now we have our pick of colors. Sort according to intensity; -------------- next part -----------...
2002 Oct 15
2
AMENDED: Ppmtolss16 trouble...
...r message: C:\>perl ppmtolss16.pl < ant.ppm > ant.lss ppmtolss16.pl: Premature EOF at (71,71) of (72,72) This is the second conversion (started out with a BMP), and both the source BMP and the PPM are 72 X 72 pixels. When I hack line 111 and 112 of ppmtolss16 to read: $xsize = $1 - 1; $ysize = $2 - 1; The script runs with no error: C:\>perl ppmtolss16.pl < ant.ppm > ant.lss ppmtolss16.pl: Warning: color palette truncated (93 colors ignored) 5041 pixels, 393 bytes, (84.41% compression) but doesn't appear to create a valid lss file. I am running on Win2k Pro, and have t...
2010 Dec 21
5
Graphing System Load MRTG
I check system load like so: [root at server cron.daily]# w 10:07:33 up 4 days, 15:01, 2 users, load average: 4.22, 3.17, 3.09 I would like to to graph the 3.17 5 minute average with MRTG. Anyone know of some examples of doing this?
2005 May 08
3
1.0-test69
http://dovecot.org/test/ - Several mbox fixes, upgrade recommended for test68 mbox users - Possibly fixes some IMAP hangs where Dovecot just stopped replying - Fixed delay-newmail workaround. It was badly broken before. And somewhat off topic advertisement: I got a bit distracted from Dovecot a week ago when a guy started mailing me about wanting to write an irssi2 client as a project to
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com> Since we can't use __intcall() for EFI, and since we can now have the ELF module code resolve all our symbols at runtime, we should delete as many references to __intcall() as possible and just access the symbols directly. The most interesting patch is the support for weak symbols. We need to be able to reference derivative-specific
2012 Aug 14
1
[GIT PULL] elflink fixes
...fd..2a2c577 100644 --- a/com32/lib/syslinux/video/reportmode.c +++ b/com32/lib/syslinux/video/reportmode.c @@ -31,15 +31,12 @@ */ #include <syslinux/video.h> -#include <com32.h> +#include <graphics.h> void syslinux_report_video_mode(uint16_t flags, uint16_t xsize, uint16_t ysize) { - static com32sys_t ireg; + if (flags > 0x0f) + return; - ireg.eax.w[0] = 0x0017; - ireg.ebx.w[0] = flags; - ireg.ecx.w[0] = xsize; - ireg.edx.w[0] = ysize; - __intcall(0x22, &ireg, NULL); + using_vga(flags, xsize, ysize); } diff --git a/com32/libupload/upload_...