search for: 65535u

Displaying 4 results from an estimated 4 matches for "65535u".

Did you mean: 65535
2016 Oct 14
2
creating an .init section
Hi, I would like to create an .init section in the LLVM backend. Can anyone shed me the light on how to do it? Do I have to create it in the clang? Thanks, Jin -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20161014/4f262397/attachment.html>
2004 Sep 10
0
new checkins
...-0000 @@ -22,6 +22,10 @@ #include "ordinals.h" +#ifdef __cplusplus +extern "C" { +#endif + /* changing the following values to be higher will break the framing and hence the stream format, so DON'T! */ #define FLAC__MIN_BLOCK_SIZE (16u) #define FLAC__MAX_BLOCK_SIZE (65535u) @@ -503,5 +507,9 @@ * encapsulated here: */ FLAC__bool FLAC__format_is_valid_sample_rate(unsigned sample_rate); + +#ifdef __cplusplus +} +#endif #endif Index: seek_table.h =================================================================== RCS file: /cvsroot/flac/flac/include/FLAC/seek_tab...
2004 Sep 10
3
new checkins
FYI, I have checked in a few interesting things. One is a speedup to the decoder (about 15% improvement in overall decode time). Another is a new interface to FLAC file metadata. If you're curious look at include/FLAC/metadata.h. It is basically a collection of object manipulation routines and iterators that make it pretty easy to add/edit/delete FLAC metadata in files efficiently. The
2011 Jun 02
48
[PATCH 0/9] libxl: disk configuration handling
This is v3 of my disk series. What were previously patches 01-06 have been applied. These are the tested and updated remainder, addressing the previous comments. 1 Preparatory work. 2-4 The new parser and its documentation. 5-6 Replace old parsers with calls to the new one. 7-8 Two features, one of them essential. 9 Basic test suite for disk string parsing, as adhoc script.