A bit field is used to compactly store multiple logical values as a short series of bits where each of the single bits can be addressed separately.
2
votes
2answers
60 views
C programming bitfield in structure
Why is answer of it
-1, 2, -3 ? (especially -3 ??? how come)
struct b1 {
int a:1;
int b:3;
int c:4;
} ;
int main()
{
struct b1 c = {1,2,13};
printf("%d, %d, %d",c.a,c.b,c.c);
...
4
votes
1answer
58 views
Bit-fields “In-class initialization” results in “error: lvalue required as left operand of assignment”
struct bitfield {
int i = 0; // ok
int j : 8 = 0; // error: lvalue required as left operand of assignment
};
What is the correct syntax to initialize bit-fields using C++11 "in-class ...
0
votes
0answers
3 views
Recovering individual numbers from a summation
When a bitfield is represented by an integer you can recover the 2^x numeric equivalents of the bits that make it up easily.
So if the answer is 26, you know that the components were 2+8+16. No ...
-2
votes
2answers
77 views
Can bit-fields only be fields of a structure/union, never “normal”, “stand-alone” variables?
The field part of bit-fields seems to suggest that they can only be fields inside a structure or union.
Can a bit-field be a typical "stand-alone" variable, outside any aggregate data-type like union ...
0
votes
0answers
40 views
C enum as a type in a structure when using bit fields
It was my understanding that the type for the bit field declarator should be of some int type. In fact, here is the line from the C99 standard
"A bit-field shall have a type that is a qualified or ...
1
vote
3answers
73 views
Bit-fields confusion?
I am working with bit-fields in C and do not understand what is going on with them. I created this code but I do not understand why different things are coming up as usual.
struct tB
{
unsigned ...
0
votes
1answer
48 views
Why MySQL query does not properly insert BIT(50) bitfield
I'm implementing a bitfield column to my database on my current project. It's 50 bits long but it does not seem to properly insert the bitfield I create in PHP. This is the literal query (I tried ...
0
votes
1answer
58 views
CRM 2011 - Enabling “BIT”-fields (two options) in a Duplicate Detection Rule
We have a customer who wants to create a "Duplicate Detection Rule" on four fields and one of them is a "Bit"-field (two options). But when we create the "Duplicate Detection Rule" we can't select ...
3
votes
3answers
65 views
C - How do I receive a bit from a bit field as a parameter in a function?
I have a bit field defined like that (it is from a microcontroller library, so it looks a bit different):
typedef union {
byte Byte;
struct {
byte PTAD0 :1;
byte PTAD1 ...
1
vote
1answer
76 views
Regular Expression To Find All Structs Defined With a Bit Field
I need to search all directories in a C++ code base for structures that contain bit fields. I know this can be accomplished with regular expressions, but have been unable to put together the correct ...
3
votes
2answers
81 views
structure padding information
struct abc
{
char arr[7];
char arr1[2];
int i:24;
};
In the above structure using sizeof operator I got its size 12 byte. But according to my calculation (may be wrong) it should be 16 byte. ...
-1
votes
1answer
47 views
How should I convert the endianness of a 14-bit bitfield?
If I know I am on a little-endian machine, how can I convert the endiannes of a 14-bit bitfield?
struct {
unsigned foo : 14, bar 2;
} baz;
I have a hunch that baz.foo = htons(baz.foo) will not ...
2
votes
2answers
99 views
Why are programming languages strictly reliant on primitive types, and is assembly more flexible? [closed]
Why don't we have data types that are 4 bits in size? Why can't we make them if we are so inclined? I have seen bit-fields, but I have heard they are not portable, and perhaps not used as well? I ...
1
vote
3answers
132 views
Macro to iterate over struct members
I use a struct of bit fields to access each colour channel in a pixel, the problem is that quite often I have code that applies in the same way to each channel, but because I cannot just iterate over ...
0
votes
2answers
237 views
Using typedef and struct to create bitfield (c programming help!!)
Hey all this is for C programming.
Here are the questions as they were presented to me, can someone tell me how I would correctly write code for the following statements in C? FYI i already answered ...
-6
votes
4answers
87 views
What are flags and bitfields?
Can someone explain to me what flags and bitfields are. They seems to be related to each other, or mabye i got the wrong idea. I kinda grasp bits and pieces of what they do and are but I would like to ...
4
votes
3answers
171 views
Memory layout of struct having bitfields
I have this C struct: (representing an IP datagram)
struct ip_dgram
{
unsigned int ver : 4;
unsigned int hlen : 4;
unsigned int stype : 8;
unsigned int tlen : 16;
unsigned int ...
6
votes
3answers
175 views
Misalligned attributes usign bit-fields in C++ class [closed]
I'm trying to use bit-fields in C++ to achieve a specific class size, but for some reason it's bigger than I expected.
The problem is, a class with 32 bits (4 bytes) is reporting (when passed as ...
0
votes
2answers
92 views
Checking for either/or with an EnumSet
So I'm converting some bitfields in our application to use EnumSet instead, and I'm curious if there's a better way to do a comparison for X|Y. Currently we do something like:
if(bitfield & (X | ...
0
votes
1answer
29 views
uintmax_t for vector indexes
I am dealing with basically a bit-flag search mask and I'm using vectors. These indexes need to go up to the max integer on the machine (defined in stdint.h)
Basically the problem is
searchMask[ ...
0
votes
1answer
39 views
C++Builder 2007, Union and bit fields
Size of this union return 16 bytes (in C++Builder 2007).
typedef union
{
struct
{
unsigned Type:2;
unsigned Prev:31;
unsigned Next:31;
unsigned SizeInBytes:32;
};
} eMyUnion;
...
4
votes
1answer
83 views
calculating bit flag intersection for congruency
Technical circumstances:
Given is an int column in SQL Server 2008 R2 for saving decimal-“encoded” bit flags (ranging from 20 to 230, thus having 31 available flags with the maximum being ...
0
votes
1answer
92 views
Bitfield size is not as expected, why?
Why does this bitfield have a size of 4?
Is there any way for me to make it have size 2 (as obviously intended in the code below), or is this impossible to do cleanly?
struct S
{
unsigned short x ...
8
votes
3answers
209 views
Maximum size of a bit field in C or C++? [duplicate]
Possible Duplicate:
struct bitfield max size (C99, C++)
Is there a limit to the number of bits that I can specify in a bit field in C or C++? For example, could I do this:
struct HugeInt ...
1
vote
1answer
127 views
Typedef a bitfield variable
I want to have a typedef that is 1-bit integer, so I though of this typedef int:1 FLAG; but I'm getting errors with it, is there a way I can do so?
Thanks
3
votes
2answers
168 views
2bit bit-fields array effects on performance and cache efficiency?
I am in need of a 2bit array, I am not concerned with saving memory at all, but I am concerned with minimizing cache misses and maximizing cache efficiency. Using an array of bools will use 4 times ...
3
votes
4answers
213 views
Explain Use of “:” operator in c++ in the code snippet “int i:2;” [duplicate]
Possible Duplicate:
What does this C++ code mean?
In the following C++ code
# include <stdio.h>
int main()
{
struct clap
{
int i:2;
int j:2;
int k:3;
}x={1,2,3};
...
5
votes
3answers
168 views
C bitfield element with non-contiguous layout
I'm looking for input on the most elegant interface to put around a memory-mapped register interface where the target object is split in the register:
union __attribute__ ((__packed__)) epsr_t {
...
2
votes
2answers
88 views
Bit field manipulation
In the following code
#include <iostream>
using namespace std;
struct field
{
unsigned first : 5;
unsigned second : 9;
};
int main()
{
union
{
field word;
int i;
};
...
7
votes
3answers
113 views
sizeof not showing the expected output
#include <stdint.h>
#include <stdio.h>
typedef union {
uint64_t u[2];
struct {
uint64_t a:30;
uint64_t b:30;
uint64_t c:30;
uint64_t d:30;
...
4
votes
3answers
258 views
Switch on EnumSet
The old way, if we wanted to switch on some complicated bitmask, we could easily do it like this (a random example from the top of my head just to demonstrate the issue):
private static final int ...
2
votes
2answers
105 views
Which way of storing and operating on bitfields in javascript is the fastest? (200k+ bits)
I am profiling my javascript code intended to be used on embedded browser on Android (PhoneGap).
Basically I need a very large bitfield (200k+ bits) for my calculations.
I've tried to put them into ...
1
vote
5answers
129 views
Why aren't bitfields allowed with normal variables?
I wonder why bitfields work with unions/structs but not with a normal variable like int or short.
This works:
struct foo {
int bar : 10;
};
But this fails:
int bar : 10; // "Expected ';' at ...
0
votes
1answer
96 views
Instance Variables and Bitfield
I was trying to do an instance field of 1 bit in Objective-C, however when I try this @property BYTE Z : 1; I get an error saying Property name cannot be a bitfield.
What Can't I do so? Is there a ...
2
votes
1answer
227 views
Where can I find a reference for what every bit of the CorFlags value means?
I'm messing around with some rather low level things and trying to determine why I get different outputs with the CorFlags.exe utility. For reference, the outputs are as so:
$ corflags test2.exe
...
1
vote
2answers
216 views
How to pack bit fields in short integer with a char array?
In the following 2 structures,
typedef struct _a {
short a1:13 __attribute__((packed));
char a2[4] __attribute__((packed));
} a;
typedef struct _b {
short b1:10 __attribute__((packed));
...
0
votes
2answers
102 views
Cases where bit-fields are useful? [closed]
I'm looking for a simple case where a bit-field is useful.
2
votes
3answers
403 views
c - cannot take address of bit-field
Why cannot take address of bit-field?
How do I make a pointer to bit-field?
Here is the code...
struct bitfield {
unsigned int a: 1;
unsigned int b: 1;
unsigned int c: 1;
unsigned ...
0
votes
0answers
24 views
Expansion of module_param() macro: a struct with a single member or a bitfield? [duplicate]
Possible Duplicate:
What is “:-!!” in C code?
The linux kernel module_param() macro expands into several instructions, some of them using numbers (sizes) that are calculated as follow (I ...
3
votes
2answers
143 views
Bitfields and Unions in C giving problems
I am implementing a radio standard and have hit a problem with unions in structure and memory size. In the below example I need this structure to located in a single byte of memory (as per the radio ...
2
votes
3answers
155 views
What is this C syntax?
I have no idea what to call it, so I have no idea how to search for it.
unsigned int odd : 1;
Edit:
To elaborate, it comes from this snippet:
struct bitField {
unsigned int odd : 1;
...
0
votes
0answers
118 views
AR Drone 2 SDK AT command bit-fields
I am working with the AR Drone, sending commands over wifi using the AT protocol. In the SDK v1.7 docs to send a 'take off' command, it says the command is AT*REF, and it accepts 2 parameters. The ...
2
votes
0answers
96 views
Compilation errors when using explicitly-typed enum classes in bitfields (gcc C++0x/C++11)
I've been happily compiling my code with GCC without issue for the past three months until I rebuilt my cross-compiler, which was when I found myself getting the message "error: bit-field '...' with ...
2
votes
2answers
174 views
Is bool safe in a bitfield defintion? [duplicate]
Possible Duplicate:
C++ bitfield packing with bools
Is it guaranteed to be safe to use C++'s bool keyword inside a bitfield definition?
Something like:
struct flags {
bool a : 1;
...
11
votes
4answers
235 views
What is the type of a bitfield?
I can't find anywhere in the C standard where this is specified. For example, in
struct { signed int x:1; } foo;
is foo.x an lvalue of type int, or something else? It seems unnatural for it to be ...
4
votes
1answer
76 views
Is a bit-field an object?
According to C11, an object is:
#C11 § 3: Terms, definitions, and symbols
object: region of data storage in the execution environment, the contents of
which can represent values.
A bitfield ...
0
votes
6answers
357 views
size of a structure containing bit fields [duplicate]
Possible Duplicate:
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
I was trying to understand the concept of bit fields.
But I am not able to find why the size ...
0
votes
1answer
66 views
Can we represent data structures (involving bit fields) in a language independent way?
We have a dozen simulators talking to each other on UDP. The interface definition is managed in a database. The simulators are written using different languages; mostly C++, some in Java and C#. ...
2
votes
1answer
280 views
Initilizing structures containing bit-fields in C
Im trying to understand a bit more about the workings of bitfields.
Given the following code:
And assuming int is 32 bits
#include <stdio.h>
int main()
{
struct byte
{
int ...
1
vote
1answer
133 views
Assigning a value to bitfield with length 1
Suppose I have
struct A
{
signed char a:1;
unsigned char b:1;
};
If I have
A two, three;
two.a = 2; two.b = 2;
three.a = 3; three.b = 3;
two will contain 0s in its fields, while three ...

