Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

120
votes
7answers
28k views

Absolute Beginner's Guide to Bit Shifting?

I've been attempting to learn C in my spare time, and other languages (C#, Java, etc.) have the same concept (and often the same operators) ... What I'm wondering is, at a core level, what does ...
7
votes
4answers
770 views

Why does this bitwise shift-right appear not to work?

Could someone explain to me why the mask is not shifted to the right at all? You can use anything in place of that 1 and the result will be the same. unsigned mask = ~0 >> 1; printf("%u\n", ...
2
votes
4answers
75 views

C++ Bus error when using `^=` and `<<` on a class member `unsigned long`

I am trying to implement the random number generator defined in this answer. There is some ambiguity, at least from my knowledge, as to how the first line, static unsigned long x=123456789, ...
2
votes
5answers
125 views

Is there any XOR bit reduction operand or function?

Is there any XOR bit reduction operand or function in python? I have no problem to write it by yourself, but there's no reason to write it in every script if there's already built-in. r=x&1 for i ...
2
votes
2answers
93 views

I'm really bad at math and I want to do a binary operation

I have the following piece of code: public void AddHash( int val ) { m_Hash ^= (val & 0x3FFFFFF); m_Hash ^= (val >> 26) & 0x3F; } I would like very much to ...
2
votes
1answer
136 views

Binary shift of int not possible

usigned int val = 1; val <<= 30; cout << intToBin(val) << endl; string intToBin(unsigned int val) { unsigned int k=1; string ret; while (k <= val) { if (k ...
2
votes
6answers
874 views

c++ multiple enums in one function argument using bitwise or “|”

I recently came across some functions where you can pass multiple enums like this: myFunction(One | Two); Since I think this is a really elegant way I tried to implement something like that myself: ...
2
votes
5answers
2k views

C++ Binary operators order of precedence

In what order are the following parameters tested (in C++)? if (a || b && c) { } I've just seen this code in our application and I hate it, I want to add some brackets to just clarify the ...
1
vote
2answers
113 views

C#: Binary Operator Overloading : Without containing type?

Is there anyway to overload a binary operator without have the containing type or using an extension method? I want to override the == operator between two byte arrays, and hopefully, without an ...
1
vote
5answers
198 views

preprocessor macros i don't understand

i'm currently looking through some source code i found on the net, which makes use of preprocessor macros in a way i don't understand. it implements the quad-edge data-structure. hope, someone can ...
1
vote
2answers
46 views

Will (variable or {}) work crossbrowser in Javascript?

The if(variable) clause in the following constructs checks if list/array is not null/undefined, to avoid an exception: if (list) for (var k in list) { ... if (array) for (var i = ...
0
votes
2answers
66 views

Two's Complement Addition issues

I'm working on Two's complement addition. Basically I need to show the addition of -27 to +31, with both numbers in binary using 6 bits. My problem is with carry operations. Maybe I'm not doing it ...
0
votes
2answers
511 views

How can I write custom comparison (definition for binary operator Equal) for entityframework object to an int?

I'm getting this error: ex = {"The binary operator Equal is not defined for the types 'MySite.Domain.DomainModel.EntityFramework.NickName' and 'System.Int32'."} What I tried to do was do a ...