Tagged Questions

6
votes
2answers
262 views

Is this the most optimal way? C bitfields

I made a function to set or clear a specific number of bits in a DWORD. My function works. I don't need help making it work. However, I am wondering if the method I've chosen to do it is the fastest ...
3
votes
1answer
62 views

What is the purpose of the flags struct in iOS?

struct { unsigned resizesCellWidths:1; unsigned numColumns:6; unsigned separatorStyle:3; unsigned allowsSelection:1; unsigned backgroundViewExtendsUp:1; unsigned ...
2
votes
5answers
101 views

searching bit-field templates (codebooks)

I've got a bunch of 8-bit values in a codebook (about 200 of them). My program will be generating an 8-bit value in response to input, and I need to find all (or even the first is helpful) of the ...
1
vote
2answers
511 views

Simple boolean operators for bit flags

I am attempting to learn more about this to implement in my project. I currently have got this basically: unsigned char flags = 0; //8 bits flags |= 0x2; //apply random flag if(flags & 0x2) { ...
1
vote
6answers
489 views

#defined bitflags and enums - peaceful coexistence in “c”

I have just discovered the joy of bitflags. I have several questions related to "best-practices" regarding the use of bitflags in C. I learned everything from various examples I found on the web but ...
0
votes
3answers
117 views

How to format flags in c?

Assume that there are flag definitions such as: SHF_WRITE 0x1 SHF_ALLOC 0x2 SHF_EXECINSTR 0x4 SHF_MASKPROC 0xf0000000 Given a flag, I need to output SHF_WRITE|SHF_ALLOC if the bits 0x1 and ...