search for: testfield

Displaying 3 results from an estimated 3 matches for "testfield".

Did you mean: westfield
2020 Jun 23
2
[RFC] Small Bitfield utilities
...gt; > 1. Current API, purely functional > code: https://reviews.llvm.org/D81580 > > uint8_t Storage = 0; > using Amount = Bitfield<unsigned, 0, 4>; > > setField<Amount>(Storage, true); > unsigned Value = getField<Amount>(Storage); > bool Cond = testField<Amount>(Storage); > > 2. A more Object Oriented API > code: https://reviews.llvm.org/D82058 > > uint8_t Storage = 0; > using Amount = Bitfield<unsigned, 0, 4>; > > bitfield<Amount>(Storage) = true; > unsigned Value = bitfield<Amount>(Storag...
2020 Jun 11
2
[RFC] Small Bitfield utilities
TL;DR: Have support in ADT for typed values packing into opaque scalar types - Code & design choices: https://reviews.llvm.org/D81580 - Usage: https://reviews.llvm.org/differential/changeset/?ref=2005337&whitespace=ignore-most - Example of rewrite: https://reviews.llvm.org/D81662 *CONTEXT* There are places in LLVM where we need to pack typed fields into opaque values. For instance,
2013 Feb 01
3
Wiki edit access?
Hello, I am a happy CentOS user who has noticed some typos on the wiki (I sent one to Akemi yesterday). I would like to fix these directly, rather than sending email to someone else for each change. Is this possible? FWIW, I'm a committer on the ASF's httpd-docs project, although I am not currently active there. My CentOS wiki username is ChrisPepper. Thanks, Chris Pepper