search for: blurbs

Displaying 20 results from an estimated 288 matches for "blurbs".

Did you mean: blurb
2004 Sep 10
4
bitbuffer optimizations
...------------- next part -------------- --- src/libFLAC/bitbuffer.c.orig 2003-01-30 17:36:01.000000000 +0100 +++ src/libFLAC/bitbuffer.c 2003-01-30 21:53:18.000000000 +0100 @@ -51,6 +51,25 @@ */ static const unsigned FLAC__BITBUFFER_DEFAULT_CAPACITY = ((65536 - 64) * 8) / FLAC__BITS_PER_BLURB; /* blurbs */ +static const unsigned char byte_to_unary_table[] = { + 8, 7, 6, 6, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,...
2005 Jan 01
2
libFLAC bitbuffer optimizations
...m the mailing list post I dug up in the archives: --- orig/src/libFLAC/bitbuffer.c +++ mod/src/libFLAC/bitbuffer.c @@ -62,6 +62,24 @@ * keeping in mind the limit from the first paragraph. */ static const unsigned FLAC__BITBUFFER_DEFAULT_CAPACITY = ((65536 - 64) * 8) / FLAC__BITS_PER_BLURB; /* blurbs */ +static const unsigned char byte_to_unary_table[] = { + 8, 7, 6, 6, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 1, 1, 1, 1, 1,...
2004 Dec 28
2
libFLAC bitbuffer optimizations
...ta toward the front as much as possible */ if(bb->total_consumed_bits >= FLAC__BITS_PER_BLURB) { +#if FLAC__BITS_PER_BLURB == 8 + /* + * memset and memcpy are usually implemented in assembly language + * by the system libc, and they can be much faster + */ + unsigned r_end = (bb->blurbs + (bb->bits? 1:0)), + r = bb->consumed_blurbs, l = r_end - r; + FLAC__blurb * rbuffer = &bb->buffer[r]; + memcpy(&bb->buffer[0], rbuffer, r_end/4 + r_end%4); + memset(++rbuffer, 0, l/4 + l%4); +#elif FLAC__BITS_PER_BLURB == 32 + /* the original version */ unsign...
2006 Jun 26
0
DBI question. How do I load a database with data parsed from REXML?
I wrote a rexml script that parses rather big xml files (DOM parsing) and builds an object out of them. This is what it looks like after i parse the xml file and display the object: [#<Article:0xb79e7428 @brand="This is a story from ", @id=5337, @fblurb="burb", @ntype="news type here", @copy="Copyright \302\251 2006 ", @source="source",
2006 May 03
0
RoR Developer Job available in San Francisco (downtown)
Hello, Thought I''d pass this along to any job seekers out there. My understanding is that this is a relatively junior to mid-level position. ============================================================== Web Application Developer -- Ruby on Rails Blurb, Inc, San Francisco (Full Time) Are you a person who is excited to explore new technologies and build cutting edge applications
2006 Jun 13
1
Element.remove parent div
Hi all, Currently I am using Element.remove like so: <div class="blurb" id="drag_1"> <a onclick="Element.remove(''drag_1'');" class="remove"></a> </div> However I would like to just create a function since I''ll be removing multiple DIVs and updating the sortable order. I just can''t get some version
2011 Mar 10
1
[LLVMdev] LLVM 2.9 release notes + "Projects using LLVM" + API changes
...his over the last couple of releases and I think it adds a lot of value to show the different ways that LLVM gets used. Please send me a blurb along the lines of the examples from 2.8: http://llvm.org/releases/2.8/docs/ReleaseNotes.html#externalproj Note that I've zapped *all* of the existing blurbs from the 2.8 release notes, so if you want to be included in the 2.9 notes, please send me updated text. Thanks all, this is going to be a great release! -Chris
2012 May 11
5
[LLVMdev] [3.1 Release] Release Notes and External Projects
Hi all! Please remember to update the release notes! We're getting close to the release date, and we need the notes to be up-to-date. Also, if you have a project which uses LLVM, please send me a blurb about it and I can add it to our "external projects" list (or, if you have commit access, you can add it). Thanks! -bw
2006 Jun 24
1
Parsing XML with REXML problem
Why can it not find my object? What am i missing here? Here is my code: require ''rexml/document'' include REXML # classes to represent the objects and relationships in the xml file class Article attr_accessor :id, :post, :archive, :ntype, :head, :blurb, :body, :fblurb, :fimage, :att, :source, :copy, :brand end # the base parser class BaseXMLParser def initialize(filename)
2011 Oct 25
9
[LLVMdev] [3.0 Release] Call for External Open Source Projects Using LLVM 3.0
Good day! To get ready for the release, we need to make sure that the list of external open source projects using LLVM 3.0 (file:///Volumes/Sandbox/llvm/llvm.src/docs/ReleaseNotes.html#externalproj) is up to date. Please send me an email with the project's name and a short description of it. Alternatively, if the project was commented out and you would still like to be listed, just tell me
2004 Jul 17
2
[LLVMdev] Scheme compiler.
Hi, thanks for your mail! On Sat, 17 Jul 2004, Chris Lattner wrote: > > That is wonderful! Wow, you did this just ~1 month? :) Yes :), even less, but that is since I used the structure from SICP, see the URL below. > Cool, ok. Have you seen the LLVM GC support that is already available: > http://llvm.cs.uiuc.edu/docs/GarbageCollection.html > > It should be able to support
2010 Apr 21
2
[LLVMdev] final call for projects that work with LLVM 2.7
If your project works with LLVM 2.7 and you want it included in the release notes, please email me a blurb to include ASAP. -Chris
2004 Oct 16
1
FLAC Process_single... read:write ratio ?
...out is... if i call process_single() and let the read callback give the decoder exactly one packet/frame. Is the write_callback garaunteed to only be fired once ? Also one other thing... this where is always crashes... Line 374 in bitbuffer.c, at bit_buffer_clear(...) the state is ABORTED, and blurbs and bits are both ~2^32 and it tries to do a memset. I know the issue is primarily a threading one... is it normal for this to be called in the ABORTED state ? How does the blurbs and bits get so high ? (is it subtracting from 0 ?) Cheers, Zen.
2005 Jan 24
0
libFLAC bitbuffer optimizations
...ffer.c 25 Jan 2005 02:37:08 -0000 1.55 +++ bitbuffer.c 25 Jan 2005 02:39:52 -0000 @@ -228,11 +228,27 @@ /* first shift the unconsumed buffer data toward the front as much as possible */ if(bb->total_consumed_bits >= FLAC__BITS_PER_BLURB) { - unsigned l = 0, r = bb->consumed_blurbs, r_end = bb->blurbs + (bb->bits? 1:0); +#if FLAC__BITS_PER_BLURB == 8 + /* + * memset and memcpy are usually implemented in assembly language + * by the system libc, and they can be much faster + */ + const unsigned r_end = bb->blurbs + (bb->bits? 1:0);...
2009 Jul 15
2
how to enable dial to alex@asterisk.blurb.com
Hi The subject line says it all how do I enable this style of call. Pointers to the dns setup and asterisk setup would be great or even search words for google, as I am not sure how to search for this type of request. Alex -- There is no instance of a country having benefited from prolonged warfare -- Sun Tzu - The Art of War -------------- next part -------------- A
2008 Oct 01
3
GSM / 3g channel bank
More than 60% of our outbound calls are now to mobiles, so the time has come to whack in a gsm channel bank. Does anyone have any preference of bank ? Do you use a PRI or VOIP connection from the bank to asterisk ? Real-world experiences are sooooo much better than marketing blurb ;) We currently have a TE412P with a free socket, so we have a choice either way. I am looking for up to 30
2011 Nov 27
4
[LLVMdev] LLVM 3.0 release notes
The first draft of the LLVM 3.0 release notes now done, in llvm/docs/ReleaseNotes.html (the web page isn't autoupdating at the moment). Please take a look and make corrections or enhancements as you see fit. There are still a few things that I need from specific people (marked with XXX's): - BillW is writing a blog about exception handling. - The llvm.expect intrinsic isn't documented
2015 May 08
2
[LLVMdev] OpenMP 3.1 Implementation Complete
On Thu, May 7, 2015 at 10:53 PM, Hans Wennborg <hans at chromium.org> wrote: > Congratulations! Would you like to add a blurb to the release notes > for the next release? Sure! Will do. Yours, Andrey
2015 Jun 13
2
C5 : Firefox 38 bug
...puter. > > Misunderstandings do happen in natural language. NOP!! He stated NO misunderstanding. I think you are simply repeating you have learned NOT by actually knowing the code and implemetation the way the developer of the product knew it. Your info is both dated and part of the marketing blurbs. Question: 2 marketing execs are talking with each other. Which one of them is lying? ANS: The one whose lips are moving.
2004 Jul 17
0
[LLVMdev] Scheme compiler.
On Sun, 18 Jul 2004, Tobias Nurmiranta wrote: > > Cool, ok. Have you seen the LLVM GC support that is already available: > > http://llvm.cs.uiuc.edu/docs/GarbageCollection.html > > > > It should be able to support scheme well, though there may be some missing > > bits. > > Yes, I will read/use it closer and try to use it, and say if I miss > something.