Tagged Questions

0
votes
8answers
136 views

What’s the best way to return the status of multiple conditions?

So I have a House class that has a method House.buy(Person p), causing the person to buy the house. I want to know if its possible for the Person to buy the House, so I also have a …
1
vote
4answers
154 views

Error trying to define a 1,024-bit (128 Byte) Bit Field

I would like to define a large bitfield for the purpose of quickly monitoring the status a very large structure of elements. Here is what I have so far: #define TOTAL_ELEMENTS 10 …
4
votes
5answers
185 views

Bitfield masks in C

Is there a portable way in C to find out the mask for a bit field at compile time? Ideally, I'd like to be able to atomically clear a field like this: struct Reference { unsi …
1
vote
6answers
103 views

Variable-sized bitfields with aliasing

I have some struct containig a bitfield, which may vary in size. Example: struct BitfieldSmallBase { uint8_t a:2; uint8_t b:3; .... } struct BitfieldLargeBase { u …
15
votes
12answers
1k views

Is it safe to use -1 to set all bits to true?

I've seen this pattern used a lot in C & C++. unsigned int flags = -1; // all bits are true Is this a good portable way to accomplish this? Or is using 0xffffffff or ~0 be …
3
votes
9answers
332 views

Bit fields: Set vs test-and-set (for performance)

I have a large number of instances of a C structure like this: struct mystruct { /* ... */ unsigned flag: 1; /* ... */ }; flag is initially 0 but must be 1 on exit …
3
votes
5answers
227 views

getting a substruct out of a big struct in C

I'm having a very big struct in an existing program. This struct includes a great number of bitfields. I wish to save a part of it (say, 10 fields out of 150). An example code I …
5
votes
3answers
381 views

What’s the correct way of using bitfields in C?

Hello all, I am using bitfields to get easy access on a float library I am trying to make for a microcontroller with no FPU. The problem is that I can't seem to make it work with …
10
votes
4answers
1k views

How to simulate bit-fields in Delphi records?

I would like to declare a record in Delphi that contains the same layout as it has in C. For those interested : This record is part of a union in the Windows OS's LDT_ENTRY record …
2
votes
7answers
389 views

How to pick bitflag values?

I have a set of options, some orthogonal (can be combined in any combination), some exclusive (only one from the set is allowed), and need to pick a set of enum values so that they …
2
votes
5answers
1k views

C++ bitfield packing with bools

I've just done a test with bitfields, and the results are surprising me. class test1 { public: bool test_a:1; bool test_b:1; bool test_c:1; bool test_d:1; boo …