search for: samplecod

Displaying 14 results from an estimated 14 matches for "samplecod".

Did you mean: samplecode
2019 Jan 28
2
Create a BlockAddress array from LLVM Pass
...day. For the following function local static constant array: static const __attribute__((used)) __attribute__((section("data"))) void *codetable[] = { &&RETURN, &&INCREMENT, &&DECREMENT, &&DOUBLE, &&SWAPWORD}; I have the following in the LLVM IR. @sampleCode.codetable = internal global [5 x i8*] [i8* blockaddress(@sampleCode, %19), i8* blockaddress(@sampleCode, %22), i8* blockaddress(@sampleCode, %25), i8* blockaddress(@sampleCode, %28), i8* blockaddress(@sampleCode, %31)], section "data", align 16 Here the array elements are labels in c cod...
2019 Jan 29
2
[cfe-dev] Create a BlockAddress array from LLVM Pass
...array: > static const __attribute__((used)) > > __attribute__((section("data"))) void *codetable[] = { > > &&RETURN, &&INCREMENT, &&DECREMENT, &&DOUBLE, &&SWAPWORD}; > > I have the following in the LLVM IR. > > > > @sampleCode.codetable = internal global [5 x i8*] [i8* blockaddress(@sampleCode, %19), i8* blockaddress(@sampleCode, %22), i8* blockaddress(@sampleCode, %25), i8* blockaddress(@sampleCode, %28), i8* blockaddress(@sampleCode, %31)], section "data", align 16 > > > Here the array elements are...
2004 Aug 06
0
[ANNOUNCE] PocketPC Port for speex-1.1.5 with samplecode
It's the case now, MS's compilers don't support long long type So in the arch.h file I posted. Since _WIN32_WCE is defined for every Windows CE platform (including PocketPC), we can be sure if the following are defined, then it's ms's eMbedded Visual C++ compiler 1. _WIN32_WCE, meaning on Windows CE platform 2. _MSC_VER, meaning ms's compiler // the code in arch.h
2012 Jan 20
2
rbind()
...in file(file, "rt") : cannot open the connection In addition: Warning message: In file(file, "rt") : cannot open file '../RawData/File1.csv': No such file or directory ? More specifically, my directories are set up in the following way: SampleProject RawData SampleCode The current script is in the SampleCode folder. File1.csv is in the RawData folder. I'm a bit confused why this error keeps occurring. I googled it and found many other people getting the same error, but was not sure why mine remained incorrect... 2) Ultimately what I want to do is take F...
2001 Sep 18
3
Vorbis as a Quicktime codec
Anyone wants to create one? Below is a link of a sample audio codec, maybe it helps. http://developer.apple.com/samplecode/Sample_Code/QuickTime/Codecs/audiocode c.htm _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubsc...
2012 Jan 15
1
Wiki broken link
There's a broken link on the wiki at http://trac.xapian.org/wiki/SampleCode. The first Perl example points to http://svn.xapian.org/examples/?root=Search-Xapian but that url gives a 404 error. I'd fix it but I don't know where the examples are kept these days. Jim.
2013 Jan 27
1
Added a python example to the community page
Hey guys,I have added a python indexer example to the SampleCode page of our wiki.Please do have a look.The code can also be found here :- https://github.com/aarshkshah1992/xapian/blob/efcf443527b74326119bbc0935fc41a002ce60db/xapian-bindings/python/docs/examples/simpleindexgrep.py/ Thanks :) -Regards -Aarsh -------------- next part -------------- An HTML a...
2004 Jun 24
2
Packages of snippets? (was: A way to list only variables or functions?)
...me serious flaws listed below. >Can someone fix them? This would be a good job for a wiki. The key advantage is it requires minimal maintenance. For an example of how this might work check out the code samples (snippets) for the Lua language on their wiki at: http://lua-users.org/wiki/SampleCode Actually there is already an R wiki at: http://fawn.unibw-hamburg.de/cgi-bin/Rwiki.pl?RwikiHome however, no one seems to use it. If a critical mass were to post some code snippets it might get off the ground.
2004 Aug 06
2
What is the format of the PCM/WAV data forspeex_encode & speex_decode?
Ok, I'm using 1.1.4, so I should pass signed short(wav data) directly to speex_encode()? But the samplecode that comes with 1.1.4 shows me to put short in float array, and pass the float array to speex_encode() <p>-----Original Message----- From: owner-speex-dev@xiph.org [mailto:owner-speex-dev@xiph.org] On Behalf Of Jean-Marc Valin Sent: Saturday, April 17, 2004 6:25 AM To: speex Subject: Re: [s...
2004 Aug 06
0
What is the format of the PCM/WAV data forspeex_encode & speex_decode?
..._encode()? First, I'd like to ak why you want to use 1.1.4. If you don't need the new features (fixed-point or preprocessor), you should probably stick to 1.0.3, which has received more testing. If you choose to use 1.1.4, you need to send shorts to speex_encode/speex_decode. > But the samplecode that comes with 1.1.4 shows me to put short in float > array, and pass the float array to speex_encode() The document hasn't been updated for 1.1.x. Jean-Marc -- Jean-Marc Valin http://www.xiph.org/~jm/ LABORIUS Université de Sherbrooke, Québec, Canada -------------- next par...
2008 Nov 07
0
Error: A copy of ApplicationHelper has been removed from...
...pparently, there are others that have seen this -- gathering from a google search -- but I can''t find any solution. Has anyone seen this? Here is what I''ve done recently: 1. Added ssl plugin 2. Added a couple authorize.net ruby code to my lib/ dir: http://developer.authorize.net/samplecode/ Thanks. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw...
2004 Aug 06
3
What is the format of the PCM/WAV data for speex_encode & speex_decode?
I'm confused about the format of the PCM/WAV data for speex_encode & speex_decode speex_encode(enc_state, input_frame, &bits); In the manual, it says "input_frame is a (float *) pointing to the beginning of a speech frame" (for encode) But I've found that in speexenc.c and testenc.c, short* is used instead of float* So, isn't it signed 16 bit samples(if
2013 Jan 10
1
Add an example to the community page and contribute more code
Hi guys.I've finished an example indexer which acts like a grep replacement for a file.It indexes each line containing a proper noun in a given text file.The line containing the proper noun will be displayed upon searching for that noun.I would like to add it to the community code examples.I'm planning to write more examples which demonstrate some advanced features of Xapian along similar
2006 Oct 25
1
FS corruption? bogus i_mode
...4096 Dec 31 1969 srv drwxr-xr-x 2 root root 4096 Dec 31 1969 sys drwxrwxrwt 4 root root 4096 Oct 10 15:29 tmp drwxr-xr-x 12 root root 4096 Dec 19 2005 usr drwxr-xr-x 13 root root 4096 Dec 19 2005 var segrith.cse.psu.edu 68% cd root/samplecodes/test7/ segrith.cse.psu.edu 69% du -khs * 426G a.out 0 err.out 434G matrix_a 458G matrix_b 394G matrix_c 426G matrix_d 434G matrix_e 394G matrix_f segrith.cse.psu.edu 70% ll total 3107434033 ?---rw---x 11552 892546336 959789109 943207220 Dec 28 1993 a.out -rw-r--r--...