the use of individual bits in a byte (or a set of bytes) to represent boolean values.

learn more… | top users | synonyms

2
votes
2answers
85 views

Creating bitflag variables with large amounts of flags or how to create large bit-width numbers

Lets say I have an enum with bitflag options larger than the amount of bits in a standard data type: enum flag_t { FLAG_1 = 0x1, FLAG_2 = 0x2, ... FLAG_130 = 0x400000000000000000000000000000000, }; ...
8
votes
3answers
112 views

How can I define an enumeration where multiple values map to a single label?

Suppose, for the sake of this example, that I am trying to parse a file which specifies that two arbitrary bytes in the record represent the day of the week, thusly: DayOfWeek: - 0 = Monday - 1 ...
0
votes
2answers
70 views

Bit flags always including 0 value

So I came accross this code: [Flags] public enum Options { NA = 0, OptionA = 1, OptionB = 2, OptionC = 4 } Now, technically 'NA' is invalid, if the user doesn't want to select any ...
1
vote
5answers
204 views

Determine Position of Most Signifiacntly Set Bit in a Byte

I have a byte I am using to store bit flags. I need to compute the position of the most significant set bit in the byte. Example Byte: 00101101 => 6 is the position of the most significant set bit ...
4
votes
8answers
254 views

Determine which single bit in the byte is set

I have a byte I'm using for bitflags. I know that one and only one bit in the byte is set at any give time. Ex: unsigned char b = 0x20; //(00100000) 6th most bit set I currently use the following ...
1
vote
3answers
66 views

Efficiently Check Bitflag Invariant (possible bit-twiddle)

I have a byte I am using to store bit flags. I have 8 flags (one for each bit) that can be divided into 4 pairings of 2 flags which are mutually exclusive. I have arranged the bit flags in the ...
0
votes
2answers
85 views

What are possible ways of converting these bitmask definitions from pawn language to PHP?

Well, to clarify, pawn is a language that is pretty similar to C++. I'm programming an Admin Control Panel that requires bit mask permissions (in php) and I actually don't know if I converted the ...
0
votes
3answers
172 views

Parsing enum flags from comma-separated list or integer

I have an XML that contains several flags, some of them are unsigned 32-bit integers and others are unsigned 64-bit integers. Some of them are written in a comma-separated list and others are in hex ...
0
votes
0answers
104 views

PHP/MySQL Field/Column Bit-Flags: UNIQUE_KEY_FLAG vs. UNIQUE_FLAG

In PHP, when extracting bit-flags from MySQL columns/fields, I see (from other SO answers): UNIQUE_KEY_FLAG = 4 UNIQUE_FLAG = 65536 I'm wondering what the difference is between these two bit-flags? ...
1
vote
1answer
90 views

Is there an intuitive way of checking for flags and states?

Couldnt find a relevant answer to my case so i will try explaining my situation: I have the following code: enum Flags { OnlySpaces = 1 << 0, valComment = 1 << 1, ...
0
votes
3answers
199 views

Bit flags from boolean variables in Java and MySQL

I just want to create a bit flag from a series of boolean variables so I can store one variable in a MySQL database instead of several booleans. For example, I have three boolean flags (A, B, C) and ...
0
votes
1answer
144 views

How do I read bit flags mixed with data?

I've never wandered into reading binary data before. I'm trying to learn now, and make a simple application to read the header data from a FLAC file and display the information in human readable ...
1
vote
2answers
258 views

Binary flags for functions in php

Good day everyone. I'm trying to figure out a way to use multiple flags for a function, without increasing number of arguments. For example to use it like that some_func(flag1|flag2|flag3); For now ...
0
votes
1answer
142 views

Determining signed overflow (x86 Overflow / Auxilliary Flags)

First of all: I really tried to find a matching answer for this, but I just wasn't successful. I am currently working on a little 8086 emulator. What I haven't still figured out is how the Overflow ...
0
votes
4answers
355 views

Extend Enum with flag methods?

I have found good examples on how to create extension methods to read out single values from bitwise enums. But now that C# 4 has added the HasFlag method they are really not needed. What I think ...
2
votes
9answers
137 views

How to use a bitflag on an unsigned int in order to store an additional bool value in it

I use unsigned ints representing a bunch of airplanes in a game. Each plane has two states, flying and grounded. I would like to store this state together with the planes number. What is the "best" ...
4
votes
1answer
150 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 ...
1
vote
1answer
1k views

C# int to Flag Enum [duplicate]

Possible Duplicate: C# int to enum conversion Is it somehow possible to convert an int to a flag combination enum? So, if [Flags] public enum Foo {a = 0x80, b = 0x40, ...
0
votes
3answers
366 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 ...
3
votes
3answers
87 views

Bitwise flag issue

I have a series of bit flags that order something like {none=0x00, puppies=0x01, kittens=0x02, cute=0x04, funny=0x08, scary=0x10} and so forth. Whenever a user does a search, I just |= each of the ...
2
votes
5answers
165 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 ...
4
votes
5answers
226 views

Is there a pattern or a method in C# to check if an (int 1,2,4,8,…) option is true or false

I like to write enum or integer to pass option to my methods. Is there a pattern or a method in C# to check if an (int 1,2,4,8,...) option is true or false. I think it should easily be possible via ...
21
votes
6answers
671 views

What Does the [Flags] Attribute Really Do?

What does applying [Flags] really do? I know it modifies the behavior of Enum.ToString, but does it do anything else? (e.g. Different compiler or runtime behavior, etc.) Edit: Yeah, I'm aware that ...
1
vote
1answer
116 views

Polyphony with AudioRenderCallback and AudioUnitRenderFlag

I am getting my bearings in core audio / audio units, so please forgive me if this should be self evident. If i want to allow for five voices, I need 5 buses on the mixer and at least 5 buffers if i ...
1
vote
2answers
797 views

c++ bit flags in opengl shaders (glsl)

What would be the best way to send my bit flag to the fragment shader in order to be able to if() against it? I have the following bit flag (enum): uint32_t options; enum Options { ON ...
6
votes
2answers
401 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
2answers
527 views

Flags in VB6 does not return a correct value

I am currently trying to use a bit flag enum in a VB6 / COM project. However, when trying to read values from the enum, I get inconsistent results. Here is the enum definition : Enum Fruits None ...
5
votes
3answers
520 views

What's the optimal way to store binary flags / boolean values in each database engine?

I've seen some possible approaches (in some database engines some of them are synonyms): TINYINT(1) BOOL BIT(1) ENUM(0,1) CHAR(0) NULL All major database engine supported by PHP should be noted, ...
12
votes
3answers
2k views

Type safe(r) bitflags in C++?

While revising some old c++ code, I ran across several bitflags defined as enums. enum FooFlags { FooFlag1 = 1 << 0, FooFlag2 = 1 << 1, FooFlag3 = 1 << 2 // etc... ...
3
votes
2answers
3k 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) { ...
11
votes
4answers
854 views

How should I represent a bit flags int field in django admin?

I have a data model with a bitfield defined something like this: alter table MemberFlags add column title varchar(50) not null default ''; alter table MemberFlags add column value integer( 3) not ...
8
votes
6answers
577 views

Actual uses of bit flags in .NET framework

Was looking at how enums can be used as bit flags by decorating them with the flags attribute and bitwize operators (see below). Are there any places in the .NET framework that this pattern is used? ...
3
votes
7answers
761 views

Why does [Flag]'d enums start at 0 and increment by 1?

Edit: It seems most people misunderstood my question. I know how enum works, and I know binary. I'm wondering why the enums with the [Flags] attribute is designed the way it is. Original post: This ...
5
votes
4answers
175 views

Is there a name for the technique of using base-2 numbers to encode a list of unique options?

Apologies for the rather vague nature of this question, I've never formally been taught programming and Google is rather useless to a self-help guy like me in this case as the key words are pretty ...
2
votes
2answers
167 views

What to name an array of flags?

I have a project where lots of the objects hold state by maintaining simple boolean flags. There are lots of these, so I maintain them within a uint32_t and use bit masking. There are now so many ...
0
votes
2answers
1k views

How to calculate Bit Flag in javascript?

im writing a free tool for SEO... implementing an api from seomoz and the flags look like this URL Metric,Bit Flag Title,1 URL,4 Subdomain,8 Root Domain,16 External Links,32 Links,2048 mozRank,16384 ...
2
votes
4answers
817 views

Bitflag enums in C++

Using enums for storing bitflags in C++ is a bit troublesome, since once the enum values are ORed they loose their enum-type, which causes errors without explicit casting. The accepted answer for ...
1
vote
6answers
735 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
4answers
1k views

Enum bitfield container class

Im trying to write a small class to better understand bit flags in c++. But something isnt working out. It prints the wrong values. Where is the problem? Have I misunderstood how to add flags? Or ...
2
votes
7answers
500 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 can be combined ...