Question says it all.
If I have this for a 96-bit field:
uint32_t flags[3]; //(thanks @jalf!)
How do I best go about accessing this, given that my subfields therein may lie over the 32-bit boundaries (eg. a field that runs from bit 29 to 35)?
I need my accesses to be as fast as possible, so I'd rather not iterate over them as 32-bit elements of an array.
__uint128_tor so. – Jens Gustedt Nov 15 '11 at 15:53