Displaying 8 results from an estimated 8 matches similar to: "[LLVMdev] C struct as function argument"
2011 Jun 20
0
[LLVMdev] C struct as function argument
Hello Michael,
> The module dump suggests everything is right, i can see in the function call the struct with the values 10 and 25, but the function is only received the 10 for the x field, nothing for the y field. Am I missing something?
You're missing the Platform ABI. I assume you're on x86-64, then your
struct (according to the ABI) should be passed in a single 64 bit
register as
2012 Feb 25
0
Speex-with-header-byte and Google ASR
Greetings list,
I am working on a project on which we wish to use Speex with Google Automatic Speech
Recognition (ASR) to transcribe Speex audio being sent on to Google ASR service and return
us the text of the spoken audio in the Speex audio stream. However, Google ASR's Speex
support requires the off-standard Speex-with-header-byte format, and my group cannot find
any worthwhile
2012 Feb 25
0
Speex-with-header-byte and Google ASR
Greetings list,
I am working on a project on which we wish to use Speex with Google Automatic Speech
Recognition (ASR) to transcribe Speex audio being sent on to Google ASR service and return
us the text of the spoken audio in the Speex audio stream. However, Google ASR's Speex
support requires the off-standard Speex-with-header-byte format, and my group cannot find
any worthwhile
2008 Sep 01
1
Porting Swfdec to Mac OS X & Timing question
Hi all:
I've been working on porting Swfdec to Mac OS X on my own time. So far
I'm making some progress; stuff is displaying and events are working.
I still have a bit of work to do, but in the meantime, I have some
questions:
1. How does one get the ability to commit things to the repository? I
don't expect this right away; I'll probably just distribute the Mac OS
X
2005 Jun 30
0
Fwd: Does not run under Mac OS X 10.3.9 (PR#7975)
Begin forwarded message:
> From: Matthias Wahl <matthias.wahl at macnews.de>
> Date: 28 giugno 2005 18:05:54 GMT+02:00
> To: stefano iacus <jago at mclink.it>
> Subject: Re: [Rd] Does not run under Mac OS X 10.3.9 (PR#7975)
>
>
> I don' have a folder 'Utilities' in applications, however here is
> what I get when I chose
> 'send error
2005 May 03
1
Problem: R lässt sich nicht starten
Hallo,
ich schreibe einfach mal deutsch, und hoffe dass Du das auch verstehst
(if not write me back in English).
OS X 10.3.9
Ich habe R 2.1.0 installiert, und das Programm hat auch funktioniert.
Will wenig sp??ter wieder mit R arbeiten, es l??sst sich aber nicht mehr
starten. "Das Programm R wurde unerwartet beendet", w??hrend ich versuche
es durch Doppelklicken auf das R.app-symbol
2009 Oct 13
2
Mac R spinning wheel with Package Manager (PR#14005)
Full_Name: James Howison
Version: 2.9.2
OS: Mac OS X 10.5.8
Submission from: (NULL) (128.2.222.163)
For quite a while now I have been unable to use Package Manager to install
programs. I get the spinning wheel and long lock ups. This happens when I hit,
"get list", but that eventually returns, seemingly successfully. However it
also happens when I try to install a package, the whole
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
Hello all,
The itanium demangler in libcxxabi (and also, llvm/lib/Demangle) is
really slow. This is largely because the textual representation of the
symbol that is being demangled is held in a std::string, and
manipulations done during parsing are done on that string. The demangler
is always concatenating strings and inserting into the middle of
strings, which is terrible. The fact that the