Tagged Questions
The bit-shift tag has no wiki summary.
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 ...
32
votes
43answers
4k views
Have you ever had to use bit shifting in real projects?
Have you ever had to use bit shifting in real programming projects? Most (if not all) high level languages have shift operators in them, but when would you actually need to use them?
27
votes
7answers
843 views
What does “<<” mean in C#?
Basically the questions in the title. I'm looking at the MVC 2 source code:
[Flags]
public enum HttpVerbs {
Get = 1 << 0,
Post = 1 << 1,
Put = 1 << 2,
Delete = 1 ...
20
votes
4answers
3k views
bitwise operators and “Endianness”
Does Endianness matter at all with the bitwise operations. Either logical or shifting?
I'm working on homework with regard to bitwise operators and I can not make heads or tails on it and I think ...
17
votes
3answers
162 views
shift bits vs multiply in PHP
I have the following code:
<?php
$start = 1;
$timestart = microtime(1);
for ($i = 0; $i < 1000000; $i++) {
$result1 = $start * 4;
}
echo "\n";
echo microtime(1) - $timestart;
echo "\n";
...
16
votes
8answers
722 views
Why doesn't left bit-shift, “<<”, for 32-bit integers work as expected when used more than 32 times?
When I write the following program and use the GNU C++ compiler, the output is 1 which I think is due to the rotation operation performed by the compiler.
#include <iostream>
#include ...
11
votes
3answers
800 views
What is the JavaScript >>> operator and how do you use it?
I was looking at code from Mozilla that add a filter method to Array and it had a line of code that confused me.
var len = this.length >>> 0;
I have never seen >>> used in JavaScript ...
11
votes
5answers
1k views
In C++, what is the difference between 1 and 1i64?
I'm converting some 32-bit compatible code into 64-bit - and I've hit a snag. I'm compiling a VS2008 x64 project, and I receive this warning:
warning C4334: '<<' : result of 32-bit shift ...
10
votes
3answers
651 views
What's the reason high-level languages like C#/Java mask the bit shift count operand?
This is more of a language design rather than a programming question.
The following is an excerpt from JLS 15.19 Shift Operators:
If the promoted type of the left-hand operand is int, only the ...
9
votes
3answers
972 views
Bitshift in javascript
I've got a really big number: 5799218898. And want to shift it right to 13 bits.
So, windows-calculator or python gives me:
5799218898 >> 13 | 100010100100001110011111100001 >> 13
70791 | ...
9
votes
9answers
5k views
Java: Checking if a bit is 0 or 1 in a long
Given that : 0000000000000000000000000000000000000000000000000000000000000001 = 1
What method would you use to determine if the the bit that represents 2^x is a 1 or 0 ?
9
votes
3answers
912 views
Why use only the lower five bits of the shift operand when shifting a 32-bit value? (e.g. (UInt32)1 << 33 == 2)
Consider the following code:
UInt32 val = 1;
UInt32 shift31 = val << 31; // shift31 == 0x80000000
UInt32 shift32 = val << 32; // shift32 == ...
8
votes
2answers
130 views
.Net GetHashcode Bit Shifting Operation
I was looking through some of the .net source yesterday and saw several implementations of GetHashcode with something along the lines of this:
(i1 << 5) + i ^ i2
I understand what the code is ...
8
votes
5answers
402 views
When are bitwise operations appropriate
I am aware of the basic premise of what bitwise operation are (although would appreciate a "for dummies" explanation); however I am unaware of when it is appropriate to use this technique.
My ...
8
votes
4answers
916 views
Why does left shift operation invoke Undefined Behaviour when the left side operand has negative value?
In C bitwise left shift operation invokes Undefined Behaviour when the left side operand has negative value.
Relevant quote from ISO C99 (6.5.7/4)
The result of E1 << E2 is E1 ...
7
votes
5answers
291 views
Why arithmetic shift halfs a number only in SOME incidents?
Hey, I'm self-learning about bitwise, and I saw somewhere in the internet that arithmetic shift (>>) by one halfs a number. I wanted to test it:
44 >> 1 returns 22, ok
22 >> 1 returns 11, ...
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", ...
6
votes
6answers
487 views
Java “Bit Shifting” Tutorial?
I would be thankfull for a good tutorial, that explain for java newbies how in java all the "bit shifting" work.
I always stumble across it, but never understood how it works. It should explain all ...
6
votes
1answer
184 views
Meaning of <<= and |=
What is the meaning of <<= and |= in C?
I recognise << is bitshift etc. but I don't know what these are in combination.
6
votes
6answers
624 views
Why use the Bitwise-Shift operator for values in a C enum definition?
Apple sometimes uses the Bitwise-Shift operator in their enum definitions. For example, in the CGDirectDisplay.h file which is part of Core Graphics:
enum {
kCGDisplayBeginConfigurationFlag = (1 ...
6
votes
4answers
272 views
Are there any good reasons to use bit shifting except for quick math?
I understand bitwise operations and how they might be useful for different purposes, e.g. permissions. However, I don't seem to understand what use the bit shift operators are. I understand how they ...
6
votes
6answers
299 views
What is the << operator doing in C++?
In the example below, what exactally is the << operator doing? I'm guessing it is not a bitwise operator.
std::cout << "Mouse down @ " << event.getPos() << std::endl;
I ...
6
votes
5answers
480 views
(-1 >> 1) == -1 - Why?
Why does (-1 >> 1) result in -1? I'm working in C, though I don't think that should matter.
I can not figure out what I'm missing...
Here is an example of a C program that does the calc:
...
6
votes
4answers
2k views
K & R Question: Need help understanding “getbits()” method in Chapter 2
As I've mentioned before, I'm going through K&R, and overall am doing all right with it. However, in chapter 2, the section on bitwise operators (section 2.9), I'm having trouble understanding how ...
5
votes
3answers
150 views
Why does bit-shifting an int upwards produce a negative number?
I am new to bit manipulations tricks and I wrote a simple code to see the output of doing single bit shifts on a single number viz. 2
#include <iostream>
int main(int argc, char *argv[])
{
...
5
votes
4answers
2k views
Should I bit-shift to divide by 2 in Java? [closed]
Possible Duplicates:
Is shifting bits faster than multiplying and dividing in Java? .NET?
Quick Java Optimization Question
Many years ago in college, I learned that bit-shifting right by ...
5
votes
1answer
192 views
C# bit shift: is this behavior in the spec, a bug, or fortuitous?
I was working with bit shift operators (see my question Bit Array Equality) and a SO user pointed out a bug in my calculation of my shift operand--I was calculating a range of [1,32] instead of [0,31] ...
5
votes
3answers
342 views
PHP Left Shift giving two answers on two different machines
I'm very confused about behaviour of PHP's left shift function. I'm using it on two different machines (dev and hosting), and they are giving me different answers. I've tracked it down to this ...
5
votes
4answers
2k views
When to use Shift operators << >> in C#?
I was studying shift operators in C#, trying to find out
when to use them in my code.
I found an answer but for Java, you could:
a) Make faster integer multiplication and division operations:
...
5
votes
6answers
2k views
Can I prevent a integer overflow in C# using an unsigned right shift?
I want alwaysPositive to be assigned a positive number with all possible values for lareValue1 and largeValue2 (these are at least 1).
The following statement causes a buffer overflow:
int ...
4
votes
4answers
157 views
Bit shifts in c++
I don't understand why this gives me the same answer:
long long a=3265917058>>24;
std::cout<<a<<std::endl;//194
long long ip=3265917058;
long long b= ip>> 24;
...
4
votes
1answer
445 views
Google Protocol Buffers: ZigZag Encoding
From "Signed Types" on Encoding - Protocol Buffers - Google Code:
ZigZag encoding maps signed integers to unsigned integers so that numbers with a small absolute value (for instance, -1) have a ...
4
votes
1answer
106 views
What is the most efficient way to enumerate vertices of k dimensional hypercube in C++?
Basic Question: I have a k dimensional box. I have a vector of upper bounds and lower bounds. What is the most efficient way to enumerate the coordinates of the vertices?
Background: As an ...
4
votes
3answers
304 views
I don't understand the following C code line
I found the following thread:
http://stackoverflow.com/questions/777617/calculate-broadcast-address-from-ip-and-subnet-mask and there the link to http://lpccomp.bc.ca/netmask/netmask.c
Could ...
4
votes
2answers
607 views
Bit Twiddling Hacks: interleave bits the obvious way [closed]
i am interested on this problem
Interleave bits the obvious way
(from http://graphics.stanford.edu/~seander/bithacks.html)
unsigned short x; // Interleave bits of x and y, so that all of ...
4
votes
5answers
338 views
Replace branch statements by bit-shifting operations
I'm writing an image binarization algorithm which simply converts each pixel's luminance value (grayscale image) to a black or white. Currently the algorithm for binarizing each pixel is roughly this
...
4
votes
3answers
335 views
Java bitshift strangeness
Java has 2 bitshift operators for right shifts:
>> shifts right, and is dependant on the sign bit for the sign of the result
>>> shifts right and shifts a zero into leftmost bits
...
4
votes
4answers
4k views
How to bitwise shift in VB.NET?
How do I bitwise shift right/left in VB.NET? Does it even have operators for this, or do I have to use some utility method?
4
votes
4answers
401 views
What is the best way to combine two uints into a ulong in c#
What is the best way to combine two uints into a ulong in c#, setting the high/low uints.
I know bitshifting can do it, but I don't know the syntax, or there maybe other APIs to help like ...
4
votes
7answers
4k views
Left bit shifting 255 (as a byte)
Can anyone explain why the following doesn't compile?
byte b = 255 << 1
The error:
Constant value '510' cannot be converted to a 'byte'
I'm expecting the following in binary:
1111 1110
...
3
votes
2answers
71 views
What is this print syntax? (print rightshift)
Looking at the source code of pstats I see this syntax:
print >> self.stream, "in %.3f seconds" % self.total_tt
print >> self.stream
What is this syntax, how is it called and how to use ...
3
votes
1answer
433 views
Verilog Barrel Shifter
I want to create a 64-bit barrel shifter in verilog (rotate right for now). I want to know if there is a way to do it without writing a 65 part case statement? Is there a way to write some simple code ...
3
votes
5answers
99 views
About shift operator in C++
I am looking at big code base in C++. There is line mentioned as below
int capacity( ) const
{
return ( 1 << theTrees.size( ) ) - 1;
}
Here theTrees is
vector<int> theTrees
...
3
votes
4answers
160 views
Odd bit shifting results in C#
Given that i have a uint value of 2402914, and i would like to grab the leftmost 17 bits, where is the fault in my logic by doing this code:
int testop = 0;
byte[] myArray = ...
3
votes
1answer
133 views
Unexpected C# bit shift right result
I underestimated the complexity of the >> operator; it's not doing what I thought it would.
I want to right shift a uint value of 6542454. I thought it worked like this:
val (is) == ...
3
votes
3answers
429 views
How do I shift out bits in C?
I am trying to write a function in C that will shift out the individual bits of a byte based on a clock signal. So far I have come up with this...
void ShiftOutByte (char Data)
{
int Mask = 1;
...
3
votes
2answers
310 views
Converting some assembly to VB.NET - SHR operator working differently?
Well, a simple question here
I am studying some assembly, and converting some assembly routines back to VB.NET
Now, There is a specific line of code I am having trouble with, in assembly, assume the ...
3
votes
2answers
323 views
Efficient bitshifting an array of int?
To be on the same page, let's assume sizeof(int)=4 and sizeof(long)=8.
Given an array of integers, what would be an efficient method to logically bitshift the array to either the left or right?
I am ...
3
votes
1answer
613 views
Ever any performance different between Java >> and >>> right shift operators?
Is there ever reason to think the >> (signed) and >>> (unsigned) right bit-shift operators in Java would perform differently? I can't detect any difference on my machine.
This is purely an academic ...
3
votes
4answers
312 views
C++ shifting bits
I am new to shifting bits, but I am trying to debug the following snippet:
if (!(strcmp(arr[i].GetValType(), "f64")))
{
dem_content_buff[BytFldPos] = tmp_data;
...