search for: linelength

Displaying 20 results from an estimated 40 matches for "linelength".

Did you mean: line_length
2004 Jul 31
0
Trunk doesn't work Adit 600/T100P
...day css default set a:2 threshold day bes default set a:2 threshold day dm default set a:2 threshold day lcv default set a:2 threshold day pcv default set a:2:1-24 signal ls set a:2:1-24 type voice -Setting slot 1. set 1:1-8 signal ls set 1:1-8 txgain 0 set 1:1-8 rxgain 0 set 1:1-8 linelength short -Setting slot 2. set 2:1-8 signal ls set 2:1-8 txgain -3 set 2:1-8 rxgain -6 set 2:1-8 linelength short -Setting slot 3. set 3:1-8 signal ls set 3:1-8 txgain -3 set 3:1-8 rxgain -6 set 3:1-8 linelength short -Setting slot 4. set 4:1-8 signal ls set 4:1-8 txgain...
2005 Oct 02
1
Adit 600 FXO card sound quality
...ng slot 1. set 1:1-8 signal lscpd set 1:1-8 txgain -3 set 1:1-8 rxgain -6 -Setting slot 2. set 2:1 signal lscpd set 2:1 txgain -3 set 2:1 rxgain -6 set 2:2-8 signal ls set 2:2-8 txgain -3 set 2:2-8 rxgain -6 -Setting slot 3. set 3:1-8 signal ls set 3:1-8 txgain -3 set 3:1-8 rxgain -6 set 3:1-8 linelength short -Setting slot 4. set 4:1-8 signal ls set 4:1-8 txgain -3 set 4:1-8 rxgain -6 set 4:1-8 linelength short -Setting slot 5. set 5:1-8 signal ls set 5:1-8 txgain -3 set 5:1-8 rxgain -6 set 5:1-8 linelength short -Setting slot 6. set 6 proxy disable -Setting users. add user "root&quot...
2011 Jul 12
1
suggestions regarding reading in a messy file
...delimiter. When I was unable to read in it, I used readLines to check the number of fields in each row. For example, when using a comma, I checked the number of entries in each line using: con <- file("myfile.txt", "r") while ( length(oneLine <- readLines(con, 1)) ) { lineLength <- length(strsplit(oneLine,",")[[1]]) cat(lineLength,"\n") } close(con) This prints out 57 for each line. But then I try: cc <- rep("character",57) myData <- read.table("myfile.txt",header=TRUE,sep=",",colClasses=cc) Error in sca...
2004 Jan 17
1
Channel Bank Woes...
...op set a:2:1-24 type voice set a:2:1-24 signal ls -Setting slot 1. set 1:1-8 signal lscpd set 1:1-8 txgain -3 set 1:1-8 rxgain -3 -Setting slot 2. set 2:1-8 signal ls set 2:1-8 txgain -3 set 2:1-8 rxgain -6 -Setting slot 3. set 3:1-8 signal ls set 3:1-8 txgain -3 set 3:1-8 rxgain -6 set 3:1-8 linelength short -Setting slot 4. set 4:1-8 signal ls set 4:1-8 txgain -3 set 4:1-8 rxgain -6 set 4:1-8 linelength short -Setting slot 5. set 5:1-8 signal ls set 5:1-8 txgain -3 set 5:1-8 rxgain -6 set 5:1-8 linelength short -Setting slot 6. set 6:1-8 signal ls set 6:1-8 txgain -3 set 6:1-8 rxgain -6 se...
2016 Jan 05
3
Activate DVI-I behind KVM on FX 5200
Hi folks, I don't seem to be able to enable the DVI-I output of an old FX 5200 behind a KVM switch. Autodetection works fine if the FX 5200 DVI output is switched to the monitor, but when it is not, I have not found a way to force-enable it. Here is what I tried: *) used the video=DVI-I-1:1280x1024-24 at 60e kernel parameter (framebuffer still sits at 1024x768) *) used "options
2019 Apr 10
1
[PATCH v2 1/3] drm: switch drm_fb_memcpy_dstclip to accept __iomem dst
...<linux/io.h> #include <drm/drm_format_helper.h> #include <drm/drm_framebuffer.h> #include <drm/drm_fourcc.h> #include <drm/drm_rect.h> -static void drm_fb_memcpy_lines(void *dst, unsigned int dst_pitch, - void *src, unsigned int src_pitch, - unsigned int linelength, unsigned int lines) +static unsigned int clip_offset(struct drm_rect *clip, + unsigned int pitch, unsigned int cpp) { - int line; - - for (line = 0; line < lines; line++) { - memcpy(dst, src, linelength); - src += src_pitch; - dst += dst_pitch; - } + return clip->y1 * pitch + clip-&gt...
2017 Feb 01
2
HP Zbook17 Dock and UEFI conflict with GK107GLM aka Quadro K1100M
...s up is the BIOS initial video mode is different in native EFI mode: @@ -374,11 +379,11 @@ pciehp: PCI Express Hot Plug Controller Driver version: 0.4 nvidiafb: Device ID: 10de0ff6 efifb: probing for efifb -efifb: framebuffer at 0x81000000, using 3072k, total 3072k -efifb: mode is 1024x768x32, linelength=4096, pages=1 +efifb: framebuffer at 0x70000000, using 8100k, total 8100k +efifb: mode is 1920x1080x32, linelength=7680, pages=1 efifb: scrolling: redraw efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 -Console: switching to colour frame buffer device 128x48 +Console: switching to colour frame bu...
2019 Apr 09
0
[PATCH 4/4] drm: add convert_lines_toio() variant, fix cirrus builds on powerpc.
...nes(void *dst, unsigned int dst_pitch, kfree(sbuf); } +static void convert_lines_toio(void __iomem *dst, unsigned int dst_pitch, + void *src, unsigned int src_pitch, + unsigned int pixels, + unsigned int lines, + struct drm_format_convert *conv) +{ + u32 dst_linelength = pixels * conv->dst_cpp; + u32 y; + void *dbuf; + + dbuf = kmalloc(dst_linelength, GFP_KERNEL); + if (!dbuf) + return; + + for (y = 0; y < lines; y++) { + conv->func(dbuf, src, pixels); + memcpy_toio(dst, dbuf, dst_linelength); + src += src_pitch; + dst += dst_pitch; + } + + kfree(db...
2015 Jun 12
2
Fwd: Problem with GT218 (GeForce GT210)
...mail.com> wrote: > >> > >> dmesg output: > >> > >> > >> > --------------------------------------------------------------------------------------------------------- > >> > >> > >> [ 1.018704] vesafb: mode is 640x480x32, linelength=2560, pages=0 > >> [ 1.018706] vesafb: scrolling: redraw > >> [ 1.018708] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0 > >> [ 1.026887] vesafb: framebuffer at 0xfb000000, mapped to > >> 0xffffc90010e80000, using 1216k, total 1216k > >> [...
2009 Apr 17
2
Manipulate single line in textfile
Hello all, Is it possible to modify a single line in a textfile? I know it is possible to load the whole text file, do the change, and save this as a new file. However, this is not practical in my case, because the document is huge and cannot be fully loaded in R. Any idea? Best, Guillaume
2004 Aug 24
5
MMX/mmxext optimisations
quite some speed improvement indeed. attached the updated patch to apply to svn/trunk. j -------------- next part -------------- A non-text attachment was scrubbed... Name: theora-mmx.patch.gz Type: application/x-gzip Size: 8648 bytes Desc: not available Url : http://lists.xiph.org/pipermail/theora-dev/attachments/20040824/5a5f2731/theora-mmx.patch-0001.bin
2014 Oct 06
21
[Bug 84706] New: [NV94] HDMI Connected, but TV reports "no signal"
https://bugs.freedesktop.org/show_bug.cgi?id=84706 Bug ID: 84706 Summary: [NV94] HDMI Connected, but TV reports "no signal" Product: xorg Version: unspecified Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2016 Aug 27
7
[Bug 97505] New: X11 does not detect nouveau when using the linux kernel EFI Loader (GRUB loader works fine)
...atically detected: $ egrep '^(nouveau|.*fb).*:' dmesg.notime efifb: dmi detected MacBookPro3,1 - framebuffer at 0xc0030000 (1440x900, stride 8192) efifb: probing for efifb efifb: framebuffer at 0xc0030000, mapped to 0xffffc90000800000, using 7232k, total 7232k efifb: mode is 1440x900x32, linelength=8192, pages=1 efifb: scrolling: redraw efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 fb0: EFI VGA frame buffer device nouveau 0000:01:00.0: enabling device (0002 -> 0003) fb: switching to nouveaufb from EFI VGA nouveau 0000:01:00.0: NVIDIA G84 (084700a2) nouveau 0000:01:00.0: bios: version 60....
2010 Mar 13
10
[Bug 27064] New: Nouveau fails to start X. This is a Nvidia G210m, the laptop is an asus UL50vt
http://bugs.freedesktop.org/show_bug.cgi?id=27064 Summary: Nouveau fails to start X. This is a Nvidia G210m, the laptop is an asus UL50vt Product: xorg Version: 7.5 Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: critical Priority: medium Component: Driver/nouveau
2003 Oct 08
2
2.5.6: a number of minor issues
...,7 @@ /*@*/ { if (!(opt->argInfo & POPT_ARG_MASK)) return NULL; - +translation_domain=translation_domain; if (opt == (poptHelpOptions + 1) || opt == (poptHelpOptions + 2)) if (opt->argDescrip) return POPT_(opt->argDescrip); @@ -123,6 +124,7 @@ char * le = malloc(4*lineLength + 1); char * l = le; +translation_domain=translation_domain; if (le == NULL) return NULL; /* XXX can't happen */ *le = '\0'; *le++ = '('; @@ -479,6 +481,7 @@ { int leftColWidth; +flags=flags; (void) showHelpIntro(con, fp); if (con->othe...
2006 Jul 27
0
kernel BUG at fs/bio.c (kernel 2.6.9-34.0.2.EL)
...ializing Cryptographic API ksign: Installing public key data Loading keyring - Added public key 1D846148DE22BD48 - User ID: CentOS (Kernel Module GPG key) pci_hotplug: PCI Hot Plug PCI Core version: 0.5 vesafb: framebuffer at 0xec000000, mapped to 0xd8080000, size 2560k vesafb: mode is 1280x1024x8, linelength=1280, pages=5 vesafb: protected mode interface info at c000:7e40 vesafb: scrolling: redraw vesafb: Pseudocolor: size=6:6:6:6, shift=0:0:0:0 Console: switching to colour frame buffer device 160x64 fb0: VESA VGA frame buffer device Real Time Clock Driver v1.12 Linux agpgart interface v0.100 (c) Dave...
2010 Jul 20
37
[Bug 29171] New: Garbled console on Macbook 13" (6, 1 9400M]) when using EFI
...g output, from an EFI boot: #grep -i -e drm -e nouv -e fb efi-dmesg Kernel command line: BOOT_IMAGE=/boot/experimental root=/dev/sda5 video=efifb reboot=pci efifb: probing for efifb efifb: framebuffer at 0xc0010000, mapped to 0xffffc90004580000, using 6400k, total 6400k efifb: mode is 1280x800x32, linelength=8192, pages=1 efifb: scrolling: redraw efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 fb0: EFI VGA frame buffer device [drm] Initialized drm 1.1.0 20060810 nouveau 0000:02:00.0: enabling device (0002 -> 0003) nouveau 0000:02:00.0: PCI INT A -> Link[LGPU] -> GSI 16 (level, low) -> IRQ 1...
2015 Jun 12
1
Fwd: Problem with GT218 (GeForce GT210)
...port 0000:00:09.0: irq 43 for MSI/MSI-X > [ 1.018590] pcieport 0000:00:0a.0: irq 44 for MSI/MSI-X > [ 1.018646] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 > [ 1.018661] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 > [ 1.018704] vesafb: mode is 640x480x32, linelength=2560, pages=0 > [ 1.018706] vesafb: scrolling: redraw > [ 1.018708] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0 > [ 1.026887] vesafb: framebuffer at 0xfb000000, mapped to > 0xffffc90010e80000, using 1216k, total 1216k > [ 1.027623] Console: switching to colour frame...
2005 Apr 21
10
apci issue
Hi, Updated to current bk today, and my machine stopped booting ... I''ve tracked it down to the apic changes from end of last week. cset 1.1307 boots fine, 1.1308 doesn''t. Diff of the boot messages is below. Full logs are also attached. Gerd --- log-1.1307 2005-04-21 14:40:57.372885027 +0200 +++ log-1.1308 2005-04-21 14:38:52.236553392 +0200 @@ -7,7 +7,7 @@
2012 Oct 30
8
[PATCH] xen PVonHVM: require at least Xen 3.4 as dom0
The XenPVHVM extensions have not been tested much on very old hypervisors. At least Xen 3.4 gets some testing with the pvops kernel. Require at least Xen 3.4 for the PVonHVM extensions. If an older hypervisor is detected the extensions will be disabled and the guest will only see emulated hardware. Signed-off-by: Olaf Hering <olaf@aepfle.de> --- arch/x86/xen/enlighten.c | 27