search for: binarystream

Displaying 4 results from an estimated 4 matches for "binarystream".

2017 Feb 22
2
RFC: Adding llvm::ThinStream
...you have to byte swap anyway, you'd need to copy the data out of the underlying buffer anyway, right?) On Wed, Feb 22, 2017 at 10:13 AM Zachary Turner via llvm-dev < llvm-dev at lists.llvm.org> wrote: > I take this as no objections. I've changed the name from ThinStream to > BinaryStream as it more accurately conveys what it is used for, and I've > got the tests and comments mostly ready to go, so I'll commit this later > today if there's no objections? > > On Sat, Feb 18, 2017 at 5:09 PM Zachary Turner <zturner at google.com> wrote: > > Some bac...
2016 May 03
9
[Bug 95251] New: vdpau decoder capabilities: not supported
https://bugs.freedesktop.org/show_bug.cgi?id=95251 Bug ID: 95251 Summary: vdpau decoder capabilities: not supported Product: Mesa Version: 11.2 Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau Assignee: nouveau at
2011 Oct 26
8
IronRuby's Marshal.dump doesn't work with CLR types, or ruby types backed by a CLR type
...happens with any CLR type eg System::DateTime. I looked through IronRuby''s marshalling code, and it appears that the behaviour of Marshal.dump and Marshal.load don''t align properly. Marshal.dump is it''s own self-contained set of code which essentially writes data to a BinaryStream. For ruby types, it ends up writing a series of values in a format that looks a lot like what I remember CRuby''s marshal writing. For CLR types, this just writes the Type name and no instance data (clr objects don''t have ruby instance variables after all) Marshal.load does 2 t...
2017 Feb 19
5
RFC: Adding llvm::ThinStream
Some background: A while back while working on code to read / write PDB files, I came up with Yet Another Stream Abstraction. Note that LLVM already has a few. Off the top of my head, theres: 1) `MemoryBuffer` and its associated class hierarchy 2) `raw_ostream` and it's associated classes. 3) `DataExtractor` which is used for reading from a StringRef. There's probably more, and