search for: _plus_

Displaying 13 results from an estimated 13 matches for "_plus_".

2007 Apr 23
1
Getting masked FFT data out of libvorbisenc
...sesse/vorbis_floor3.png In particular, there's a _lot_ of energy in the treble, where I'd expect there to be almost none. I don't know very much about the internals of Vorbis (nor psychoacoustics in general, I'm afraid), but it seems to be as if the floor is a rough copy of the FFT _plus_ the tone masking stuff, whereas I'd probably want it to be a rough copy of the FFT _minus_ the tone masking stuff. Is there any way I can actually get out this kind of information, short of encoding the entire signal and decoding it again (which will obviously also leave me with all the quanti...
2013 Jan 11
6
Off-Topic: Low Power Hardware
...maybe 30W at most) 2) Must run Linux without too much fuss (CentOS or otherwise) 3) Must have two NICs (fast ethernet or better) 4) Memory - 1GB or better 5) Can be configurable either via serial or VGA. 6) Accepts a normal hard drive, not CF -- drive capacity is my concern. 7) spare PCI slot is a _plus_ (extra NICs or whatever else) 8) I'd like to keep the physical footprint to a minimum (size of a 1U switch or so?) Old Sun/Cobalt hardware (Raq4) from the early 2000s was brought to my attention by a friend, but that hardware is in low supply and the prices are outrageous for the specs/age of...
2005 Sep 06
0
AstriCon Update: Please Register ASAP - Free Phones
...lick the link that says "Make A Hotel Reservation At The Special $114.00/night Rate". -Free IAX Phone To The Next 50 Paid Conference Registrations_ Ipsando, creator of the IAX Phone, has agreed to provide the next 50 paid conference attendees* with a free licensed copy of IAX Phone Pro _plus_ a free VoIP handset. Winners will be notified by email and can pick up their free CD and handset at the Ipsando booth. For a beta version of the phone and a list of features, please see: http://www.astricon.net/phone/ipbeta.php _Any More Speaking Proposals?_ If you would like to speak at Astri...
2005 May 28
1
mkinitrd integration strategy?
How should mkinitrd integrate with the initramfs that comes with the kernel? At the moment, mkinitrd can simply provide an /init script and take over with the contents of its own cpio file available. /init then loads some modules, plays with mdadm, lvm, cryptsetup, creates some device nodes, mounts a filesystem, switch root, done. Integration is not an issue. That changes when more of the
2013 Sep 10
3
newbie seeks repo for markdown
hello, i am looking for advice regarding the best repo from which to download "markdown" for use on a mac. on my ubuntu machine i just installed some standard markdown package with apt-get. but i have not found anything equivalent for my mac machine. i am looking for a maintained package from a reputable repo site that can be automatically installed and upgraded using the packaging
2011 Mar 28
2
[LLVMdev] RFC: GSoC Project
...ation. **** Stack space for setup_new_block setup_new_block and setup_new_block_fp will be written to use the minimum amount of stack space possible, and that stack space will have to be factored into the check in the function prologue (so every function prologue checks for the space it needs _plus_ the space required to run setup_new_block once, by a callee). *** cleanup_new_block cleaup_new_block will be a simple operation, which restores the old SP (saved_sp block header) and jumps to saved_ip (also from the block header). Later, if we decide to free unused blocks then that cleanup can...
2012 May 10
13
[Bug 49736] New: piglit quck.driver tests kill X server on nv43
...Date: Thu May 10 19:03:11 2012 +1000 drm/nv04-nv40: fix regression from a previous commit (SQUASH) mesa: commit 788fd04dacb9eb1e32010050c57cd2f49779311b Author: Tom Stellard <thomas.stellard at amd.com> Date: Wed May 9 11:50:02 2012 -0400 radeon/llvm: Remove AMDGPUConstants.pm _plus_ patches from http://lists.freedesktop.org/archives/nouveau/2012-May/010322.html nvfx_Fix_generic_passing_to_fragment_program_in_NV34.diff nvfx_SSG_only_requires_one_source_register.diff nvfx_Silence_pipe_cap_warnings.diff piglit - commit bbed4bd9e7b614cf8b3e016d1f7116c323b23332 Author: Kenneth...
2001 Sep 28
3
OpenSSH (portable) and entropy gathering
On Thu, 27 Sep 2001 20:41:05 EDT, Damien Miller writes: > On Thu, 27 Sep 2001, Dan Astoorian wrote: > > > > > It would (IMHO) be useful if there were a way to optionally configure > > that code to fall back to the internal entropy gathering routines in the > > event that EGD was not available; as it is, the routines simply fail if > > EGD is unavailable at the
2011 Apr 03
1
[LLVMdev] GSoC '11: Segmented Stacks
...tack Space For Block Setup ~~~~~~~~~~~~~~~~~~~~~~~~~~~ setup_block and setup_block_fp will be written to use the minimum amount of stack space possible, and /that/ stack space will have to be factored into the check in the function prologue. So every function prologue checks for the space it needs _plus_ the space required to run setup_block (or setup_block_fp) once, by a callee. Red Zone ~~~~~~~~ The red zone can be usable only if there actually _is_ 128 bytes of stack space left in the current block. One way the red-zone can be profitably used is to always add 128 bytes to the stack space requ...
2011 Mar 23
0
[LLVMdev] RFC: GSoC Project
On Wed, Mar 23, 2011 at 03:37:02PM +0530, Sanjoy Das wrote: > I intend to start with the simplest possible approach - representing the > stack as a doubly linked list of _block_s, the size of each _block_ > being a power of two. This can later be modified to improve performance > and accommodate other factors. Blocks will be chained together into a > doubly linked list structure
2005 Jul 08
1
Re: Hot swap CPU -- shared memory (1 NUMA/UPA) v. clustered (4 MCH)
From: Bruno Delbono <bruno.s.delbono at mail.ac> > I'm really sorry to start this thread again but I found something very > interesting I thought everyone should ^at least^ have a look at: > http://uadmin.blogspot.com/2005/06/4-dual-xeon-vs-e4500.html > This article takes into account a comparision of 4 dual xeon vs. e4500. > The author (not me!) talks about "A
2011 Oct 25
3
thanks for your input, fletcher
hey fletcher, thanks for your input here. :+) and -- quite obviously -- your program will be whatever it is that _you_ think that it should be. of course. the thing is, i am certain that i have been clear that the feature that i believe will be "killer" is on-the-fly formatted display. that's my stand. and i'd say my reasoning has been equally clear, namely that this
2011 Mar 23
5
[LLVMdev] RFC: GSoC Project
Hi All! I will be applying to the LLVM project for this GSoC, and I wanted some preliminary sanity check on my project idea. I intend to implement split (segmented) stacks for LLVM (like we have in Go, and as being implemented for GCC [1]). A lot of what follows is lifted from [1]; I will progressively add more details as I get more familiar with the LLVM codebase. I intend to start with