search for: front

Displaying 20 results from an estimated 11851 matches for "front".

2011 Mar 30
0
Plot an ols() call from Design
...ecreasing = decreasing, ...) : 'x' must be atomic > plot(Data.ols) Error in xy.coords(x, y, xlabel, ylabel, log) : 'x' is a list, but does not have components 'x' and 'y' > -------------- next part -------------- Subject Block Pos Word Onset Vheight Vround Vfront Vlength Frequency Retro AF 30 1 sak s low unround back long 12022 0 AF 30 2 sak s low unround back long 12022 0 AF 30 3 sak s low unround back long 12022 0 AF 30 4 sak s low unround back long 12022 0 AF 30 5 sak s low unround back long 12022 0 AF 30 6 sak s low unround back long 12022 0 AF 32 1 sak...
2013 Mar 01
2
[PATCH] support 7 and 8 channel wav files as input
Now that we've selected a channel mapping for 7 and 8 channel flac, the command-line encoder tools needs updating to accept wav files with compatible channel maps. -r -------------- next part --------------
2013 Mar 01
2
[PATCH] support 7 and 8 channel wav files as input
..., center, back/surround left, back/surround right</li> - <li>6 channels: left, right, center, LFE, back/surround left, back/surround right</li> - <li>7 channels: not defined</li> - <li>8 channels: not defined</li> + <li>4 channels: front left, front right, back left, back right</li> + <li>5 channels: front left, front right, front center, back/surround left, back/surround right</li> + <li>6 channels: front left, front right, front center, LFE, back/surround left, back/surround right</li> +...
2013 Jan 18
0
[PATCH] Add appropriate WAV channel masks for 7 and 8 channel files.
...eaders if necessary */ diff --git a/src/flac/encode.c b/src/flac/encode.c index eeea08a..58cdc77 100644 --- a/src/flac/encode.c +++ b/src/flac/encode.c @@ -481,7 +481,9 @@ static FLAC__bool get_sample_info_wave(EncoderSession *e, encode_options_t optio channel_mask == 0x0037 || /* 5 channels: front left, front right, front center, back left, back right */ channel_mask == 0x0607 || /* 5 channels: front left, front right, front center, side left, side right */ channel_mask == 0x003f || /* 6 channels: front left, front right, front center, LFE, back left, back right */ - channel_...
2006 Mar 17
1
MySQL-Front strangeness - help needed, esp. from newbies
Greetings to all, I''ve had two reports of strange behavior from MySQL-Front this week from folks new to RoR who are working through the IR tutorial. I''m digging into it and would very much appreciate hearing from anyone else that''s seeing this. Newbies are in an especially good position to help here, as it appears that the problem lies in a recent relea...
2017 May 06
2
Email list just for front end developers?
...Bergström <cbergstrom at pathscale.com> wrote: > On Sat, May 6, 2017 at 11:07 PM, Perry E. Metzger via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > > > Howdy! > > > > I've noticed that requests for help by people like me who are > > developing front ends are often lost in the noise in the llvm-dev > > list. Although LLVM is a wonderful and very productive framework, > > I've found that getting help on my front end has been very > > difficult, and learning necessary detail about the APIs and the > > like is often ver...
2006 Mar 19
2
Multiple polymorphic belongs_to declarations
I have the following models: class Card < ActiveRecord::Base belongs_to :deck belongs_to :front, :polymorphic => true belongs_to :back, :polymorphic => true end class TextContent < ActiveRecord::Base has_one :card, :as => :front has_one :card, :as => :back end The conflicting has_one declarations don''t work. What I need is a way to name...
2007 Mar 22
2
[LLVMdev] Google SOC - Fortran Front-End Application
...h improved. Here is the updated version. Please don't force yourself to read through it again if you don't want to. I'll submit this version with any suggestions I receive on the 23rd. Thank you all, Scott ABSTRACT ---------------- The purpose of this project is to develop a Fortran front-end to the Low Level Virtual Machine (LLVM) compiler infrastructure [http://llvm.org]. LLVM is a mature collection of tools that provides a powerful resource for language developers and end-user programmers. LLVM consists of roughly three components. The first is a front-end to a language (such as...
2017 May 06
4
Email list just for front end developers?
Howdy! I've noticed that requests for help by people like me who are developing front ends are often lost in the noise in the llvm-dev list. Although LLVM is a wonderful and very productive framework, I've found that getting help on my front end has been very difficult, and learning necessary detail about the APIs and the like is often very, very challenging. Perhaps it would b...
2007 Mar 20
0
[LLVMdev] Google SOC - Idea
Hi, Here is a rough draft of the application -- a FORTRAN front-end to LLVM. In accordance with the summer of code specifications it is split into two portions: the abstract which describes the project, and the details description which describes me and how I plan to complete the project. It's a little long, (but about half the max length the application d...
2007 Mar 19
5
[LLVMdev] Google SOC - Idea
Getting the front end for Fortran finished is definitely something I would be interested in working on. I will draft up a little proposal and send it out to this list. -Scott On 3/19/07, Kenneth Hoste <kenneth.hoste at ugent.be> wrote: > Hi Scott, > > On 18 Mar 2007, at 04:22, Scott Fortmann-Roe wro...
2008 May 07
3
[LLVMdev] How to handle size_t in front ends?
For the most part, it appears that writing a front end can be almost entirely platform-independent. For example, my front end doesn't know how big a pointer is, and for the most part doesn't care. All of the platform-specific aspects of compilation have, up to this point, been hidden behind the IR. However, where things get tricky is i...
2006 Apr 26
1
[LLVMdev] Newbie questions
On Wed, 2006-04-26 at 09:01 -0500, Archie Cobbs wrote: > Requoting myself: > > > I.e., my question is the more general one: > > how do optimizations that are specific to the front-end language get > > done? How does the front-end "secret knowledge" get passed through > > somehow so it can be used for optimization purposes? > > -Archie Archie, The quick answer is that it doesn't. The front end is responsible for having its own AST (higher...
2009 Nov 21
2
How to trim the front of a string?
Hey everybody! I have a problem with triming a string. I can get rid of the blank space in front and at the back of a string and even trim a string at the back. But I don't know how to do it in the front. For Example: I have a string "Blackberry" and i want to delete the first 5 characters to get just "berry". Tnx for your help -- View this message in context: http:/...
2012 May 16
0
Help with ices2
...for card 0 [CMI8738] Card hw:0 'CMI8738'/'C-Media CMI8738 (model 55) at 0xe800, irq 17' Mixer name : 'CMedia PCI' Components : '' Controls : 41 Simple ctrls : 22 Simple mixer control 'Master',0 Capabilities: pvolume penum Playback channels: Front Left - Front Right Limits: Playback 0 - 31 Mono: Front Left: Playback 24 [77%] Front Right: Playback 24 [77%] Simple mixer control '3D Control - Switch',0 Capabilities: pswitch pswitch-joined penum Playback channels: Mono Mono: Playback [off] Simple mixer control 'PCM'...
2004 Jul 10
3
[LLVMdev] GCC frontend
Chris, LLVM is an excellent piece of work, LLVM is one of the few project I know that has used the mysterious GCC front-end. I think it will be a great contribution to the community if you could writeup and document how to interface to the GCC front-end data-structures (like LLVM has done). Specifically: a) detail the gcc front-end tree data-structures b) how to go about interfacing to them c) what are changes that...
2006 Apr 26
0
[LLVMdev] LLVM Java front-end
Hello, I have just downloaded the source from CVS. Does exist a LLVM Java front-end? If yes, where can I find documentations about it? If no, is anyway somebody working on it? Where can I find the source code related? Thanks, Alessandro
2007 Mar 20
2
[LLVMdev] Google SOC - Idea
Hi Scott, I'm currently porting the Ada gcc front-end to LLVM. This is similar to what you want to do, so here are some comments from the trenches... > I plan on first attempting to implement the FORTRAN front-end by > co-opting the GCC FORTRAN parser. Good plan. However the Fortran front-end that comes with gcc 4.0 is known to be weak (l...
2006 Jan 25
2
[LLVMdev] New GCC4-based C/C++/ObjC front-end for LLVM
Hi Everyone, I just pushed out the latest version of my new GCC4-based llvm-gcc here: http://gcc.gnu.org/ml/gcc/2006-01/msg00931.html This email includes status and instructions for use. Compared to the old llvm-gcc, this front-end has many advantages: it is far faster, is based on GCC 4.0.1 instead of a GCC 3.4 prerelease snapshot, and it fixes several dozen of the "impossible to fix in the old front-end" bugs revolving around bitfield layout and static initialization global unions (see http://llvm.cs.uiuc....
2008 May 07
0
[LLVMdev] How to handle size_t in front ends?
On May 6, 2008, at 11:12 PM, Talin wrote: > For the most part, it appears that writing a front end can be almost > entirely platform-independent. For example, my front end doesn't know > how big a pointer is, and for the most part doesn't care. All of the > platform-specific aspects of compilation have, up to this point, been > hidden behind the IR. Nice. > However,...