Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (3)

45
votes
16answers
14k 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 better?
23
votes
8answers
15k views

Bit fields in C#

I have a structure which I need to populate and write to disk (several actually). An example is: byte-6 bit0 - original_or_copy bit1 - copyright bit2 - data_alignment_indicator bit3 - ...
21
votes
8answers
4k views

Does Python have a bitfield type?

I need a compact representation of an array of booleans, does Python have a builtin bitfield type or will I need to find an alternate solution?
18
votes
2answers
4k views

What is the best way to do Bit Field manipulation in Python?

I'm reading some MPEG Transport Stream protocol over UDP and it has some funky bitfields in it (length 13 for example). I'm using the "struct" library to do the broad unpacking, but is there a simple ...
15
votes
4answers
535 views

What does 'unsigned temp:3' means

I'm trying to map a C structure to Java using JNA. I came across something that I've never seen. The struct definition is as follow, struct op { unsigned op_type:9; //---> what does this ...
15
votes
4answers
4k 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. (I need to use ...
10
votes
1answer
742 views

GCC, -O2, and bitfields - is this a bug or a feature?

Today I discovered alarming behavior when experimenting with bit fields. For the sake of discussion and simplicity, here's an example program: #include <stdio.h> struct Node { int a:16 ...
9
votes
5answers
349 views

Can Microsoft store three-valued fields in a single bit?

I'm completely ignorant of SQL/databases, but I was chatting with a friend who does a lot of database work about how some databases use a "boolean" field that can take a value of NULL in addition to ...
8
votes
2answers
386 views

Is there a bit-equivalent of sizeof() in C?

Sizeof() doesn't work when applied to bitfields: # cat p.c #include<stdio.h> int main( int argc, char **argv ) { struct { unsigned int bitfield : 3; } s; fprintf( stdout, ...
8
votes
3answers
939 views

In C, what does a colon mean inside a declaration? [closed]

Possible Duplicate: What does ‘unsigned temp:3’ means I'm learning some kernel code, and came along the following line (in linux 2.4, sched.h, struct mm_struct): unsigned ...
8
votes
6answers
2k views

Using Bitwise operators on flags

I have four flags Current = 0x1 Past = 0x2 Future = 0x4 All = 0x7 Say I receive the two flags Past and Future (setFlags(PAST | FUTURE)). How can I tell if Past is in it? Likewise how can I ...
7
votes
3answers
113 views

What are the pros and cons of using a flags enum?

I'm receiving several bit fields from hardware. My code was originally: public readonly byte LowByte; public bool Timer { get { return (LowByte & 1) == 1; } } Then I remembered the flags enum ...
7
votes
2answers
224 views

Type of unsigned bit-fields: int or unsigned int

Section 6.3.1.1 of the C99 standard contains: The following may be used in an expression wherever an int or unsigned int may be used: [...] A bit-field of type _Bool, int, signed int, ...
7
votes
3answers
137 views

Overflow in bit fields

can I trust that the C compiler does modulo 2^n each time I access a bit field? Or is there any compiler/optimisation where a code like the one below would not print out Overflow? struct { uint8_t ...
7
votes
8answers
457 views

When is it worthwhile to use bit fields?

Is it worthwhile using C's bit-field implementation? If so, when is it ever used? I was looking through some emulator code and it looks like the registers for the chips are not being implemented ...
7
votes
5answers
566 views

Bit field vs Bitset

I want to store bits in an array (like structure). So I can follow either of the following two approaches Approach number 1 (AN 1) struct BIT { int data : 1 }; int main() { BIT a[100]; ...
7
votes
4answers
504 views

Please help me find the official name of this programming approach

I [surely re] invented this [wheel] when I wanted to compute the union and the intersection and diff of two sets (stored as lists) at the same time. Initial code (not the tightest): dct = {} for a in ...
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 ...
6
votes
3answers
985 views

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

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 bitfields. Take a look: ...
6
votes
6answers
5k 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; bool test_e:1; bool ...
5
votes
2answers
190 views

Accessing bitfields while reading/writing binary data structures

I'm writing a parser for a binary format. This binary format involves different tables which are again in binary format containing varying field sizes usually (somewhere between 50 - 100 of them). ...
5
votes
4answers
240 views

Is using 0xFFFFFFFF a reliable way to set all bits in a 32-bit type?

There's this code that compiles with Windows SDK: UINT cFiles = DragQueryFileW(hDrop, 0xFFFFFFFF, NULL, 0); where DragQueryFileW() has this signature: UINT DragQueryFileW(HDROP, UINT, LPWSTR, UINT ...
5
votes
3answers
353 views

Practical Use of Zero-Length Bitfields

I am not totally sure about C, but C++ allows unnamed bit-fields of 0 length. For example: struct X { int : 0; }; Question one: What practical uses of this can you think of? Question two: ...
5
votes
5answers
608 views

how to declare an unsigned int in a C program

On this link I came across http://lxr.linux.no/#linux+v2.6.36/include/linux/pci.h#L299 integer declaration unsigned int is_added:1;I have made C programs and declared integers in them but in the ...
5
votes
3answers
914 views

How slow are bit fields in C++

I have a C++ application that includes a number of structures with manually controlled bit fields, something like #define FLAG1 0x0001 #define FLAG2 0x0002 #define FLAG3 0x0004 ...
5
votes
7answers
1k views

C/C++ bitfields versus bitwise operators to single out bits, which is faster, better, more portable?

I need to pack some bits in a byte in this fashion: struct { char bit0: 1; char bit1: 1; } a; if( a.bit1 ) /* etc */ or: if( a & 0x2 ) /* etc */ From the source code clarity ...
5
votes
5answers
687 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 { unsigned age : 3; ...
5
votes
9answers
1k 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 from a certain ...
4
votes
2answers
92 views

Do bitfields have any hidden costs or benefits aside from the obvious seeming benefit of saving space?

here is how you declare a bitfield: unsigned m_bitfield1 : 2; // a bitfield that occupies 2 bits unsigned m_bitfield2 : 1; // a bitfield that occupies 1 bit a bit-field is simply a small field ...
4
votes
2answers
97 views

Type of lvalue.bitfield when the underlying bitfield type is not int in C

Someone drew my attention to the following program: #include <stdio.h> struct X50 { long long int z:50; } s50 = { 2 }; struct X10 { long long int z:10; } s10 = { 2 }; int main() { ...
4
votes
5answers
366 views

Why bit endianness is an issue in bitfields?

Any portable code that uses bitfields seems to distinguish between little- and big-endian platforms. See the declaration of struct iphdr in linux kernel for an example of such code. I fail to ...
4
votes
2answers
95 views

Mutually exclusive contiguous ranges from multiple bitfields

(This is not a CS class homework, even if it looks like one) I'm using bitfields to represent ranges between 0 and 22. As an input, I have several different ranges, for example (order doesn't ...
4
votes
5answers
187 views

Storing many bits — Should I use multiple columns or a single bitfield column?

I am designing a User table in my database. I have about 30 or so options for each user that can be either "allow" or "disallow". My question is should I store these as 30 bit columns or should I use ...
4
votes
7answers
1k views

In C#, how to easily map enum flags from one type to another?

Also see the updates at the end of the question... Given the following situation: [Flags] enum SourceEnum { SNone = 0x00, SA = 0x01, SB = 0x02, SC = 0x04, SD = 0x08, SAB = ...
4
votes
4answers
316 views

Questions about C bitfields

Is bitfield a C concept or C++? Can it be used only within a structure? What are the other places we can use them? AFAIK, bitfields are special structure variables that occupy the memory only for ...
4
votes
5answers
2k views

Bitfields in C#

So, bitfields. Specifically, large bitfields. I understand how to manipulate individual values in a bitfield, but how would I go about doing this on a large set, such as say: uint[] bitfield = new ...
3
votes
3answers
122 views

96-bit long bitfield with non-octet aligned subfields

I need a 96-bit long structure that I can place custom bit fields into. The fields' lengths are all over the place, 8, 3, 26, 56. It's important that they remain these exact lengths (with one ...
3
votes
1answer
68 views

Will this bitfield work the way I expect?

I've been doing some reading about bitfields in C, how the C standard doesn't enforce any particular ordering of the fields in a machine word, and so on. I hope this question appropriately fits the ...
3
votes
3answers
136 views

Comparing Bitfields of Different Sizes

What happens if you use a bitwise operator (&, |, etc.) to compare two bitfields of different sizes? For example, comparing 0 1 1 0 with 0 0 1 0 0 0 0 1: 0 1 1 0 0 0 0 0 The smaller one is ...
3
votes
2answers
332 views

byte-array as bitfield in C#?

Is there a built-in class or something in .NET that would allow me to treat a byte-array as a large bitfield?
3
votes
3answers
339 views

How to use binary flags in Core Data?

I have an int32 attribute in a Core Data database. I use this int as an enum bit field. Is it possible to create a NSPredicate to query items based on the binary value of this int ? Something like ...
3
votes
5answers
237 views

Iterate members of a bitfield

We have this example: struct X { int e0 : 6; int e1 : 6; int e2 : 6; ... int e10 : 6; }; struct X c; How can I access the members "automatically", something like that: c.e{0-10} ? Say if ...
3
votes
3answers
294 views

Bitfields in C++

I have the following code for self learning: #include <iostream> using namespace std; struct bitfields{ unsigned field1: 3; unsigned field2: 4; unsigned int k: 4; }; int main(){ ...
3
votes
3answers
322 views

Using integers as bitfields in JavaScript

As part of a project I have a string of numbers between 0 and 3, for example: 2030000000000000000030000000000000000003333212111221121301 I want to pass this string through an URL, so I figured I ...
3
votes
5answers
233 views

Need meta-programming magic to define a mother lode of bit fields in an error-free way

The goal is to control which types of users are allowed to perform which operations at the UI level. This code has been in place for a while; I just want to improve it a bit. The file which I am ...
3
votes
4answers
583 views

c union and bitfields

Can bitfields be used in union?
3
votes
4answers
938 views

struct bitfield max size (C99, C++)

What is maximal bit width for bit struct field? struct i { long long i:127;} Can I define a bif field of size 128, 256 bit or larger? There are some extra-width vector types, like sse2, avx ...
3
votes
2answers
426 views

Tips on redefining a register bitfield in C

I am struggling trying to come up with a clean way to redefine some register bitfields to be usable on a chip I am working with. For example, this is what one of the CAN configuration registers is ...
3
votes
6answers
301 views

How do I parse out n-bit elements from a byte addressable array

I have a data stream that is addressable only in 8-bit bytes, I want to parse it out into 6-bit elements and store that into an array. Is there any best known methods to do this? 11110000 10101010 ...
3
votes
4answers
793 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 1021 typedef struct ...

1 2 3