Tagged Questions
The bit-shift-operators tag has no wiki summary.
84
votes
13answers
5k views
Is multiplication and division using shift operators in C actually faster?
Multiplication and division can be achieved using bit operators, for example
i*2 = i<<1
i*3 = (i<<1) + i;
i*10 = (i<<3) + (i<<1)
and so on.
Is it actually faster to use say ...
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
1answer
133 views
Bit shift compiler bug or a corner case?
The following code outputs 0,1,32,33. Which is counter intuitive to say the least. But if I replace the literal 1 with the type annonated constant "ONE", the loop runs fine.
This is with gcc 4.6.2 ...
5
votes
7answers
486 views
In C++, which is faster? (2 * i + 1) or (i << 1 | 1)?
I realize that the answer is probably hardware specific, but I'm curious if there was a more general intuition that I'm missing?
I asked this question & given the answer, now I'm wondering if I ...
5
votes
8answers
605 views
Why do Java and C# have bitshifts operators?
Is the difference between integer multiply(temporarily forgetting about division) still in favor of shifting and if so how big is the difference?
It simply seems such a low level optimization, even ...
3
votes
1answer
86 views
C bit shifting odd results past 15 bit shifts leftwise
so I am shifting up a char into a long, then clearing, and doing it again. A shift of 15 makes my machine go wacky, see comment in code. What do you think is causing this.
This machine char 0x00, ...
3
votes
1answer
182 views
How can I get a result larger than 2^32 from shl?
Declaration...
const
n = 2 shl 33
will set constant n to value 4 without any compiler complaint!
Also...
Caption := IntToStr(2 shl 33);
...return 4 instead 8589934592.
It looks like the ...
3
votes
1answer
139 views
Why is (-1 >>> 32) = -1? [closed]
Possible Duplicate:
why is 1>>32 == 1?
-1 as an int converted to binary is represented by 32 1's.
When I right-shift it 31 times, I get 1 (31 0's and one 1).
But when I right-shift ...
3
votes
6answers
692 views
Shift Operators in C++
If the value after the shift operator
is greater than the number of bits in
the left-hand operand, the result is
undefined. If the left-hand operand is
unsigned, the right shift is a ...
2
votes
3answers
45 views
Shifting a Java BitSet
I am using a java.util.BitSet to store a dense vector of bits.
I want to implement an operation that shifts the bits right by 1, analogous to >>> on ints.
Is there a library function that ...
2
votes
4answers
92 views
Difference between SHL and SAL in 80x86
I have learned how to work with 80x86 assembler, so in bit-wise shift operation, i faced a problem with SAL and SHL usage. I means the difference between lines of code as follow :
MOV X, 0AAH
SAL X, ...
2
votes
4answers
65 views
Sign extension on literal vs. variable
I'm working with gcc 4.4.5, and have some difficulties in understanding the right shift operator on plain simple unsigned values...
This test
ASSERT_EQ( 0u, (unsigned long)(0xffffffff) >> ...
2
votes
3answers
171 views
c get nth byte of integer
I know you can get the first byte by using
int x = number & ((1<<8)-1);
or
int x = number & 0xFF;
But I don't know how to get the nth byte of an integer.
For example, 1234 is ...
2
votes
4answers
149 views
Thinking in C++ shift operators
I'm reading through a book on C++ standards: "Thinking in C++" by Bruce Eckel.
A lot of the C++ features are explained really well in this book but I have come to a brick wall on something and ...
2
votes
2answers
162 views
Arithmetic Vs logical shift operation
I have some code that stuffs in parameters of various length (u8, u16, u32 ) into a u64 with the left shift operator.
Then at various places in the code i need to get back the original parameters ...
2
votes
2answers
97 views
How to shift bits in a color (hex value)
I have the following hex value store in a variable:
0x04a8f5
I want to convert the value to:
0xff04a8f5
How can I accomplish this?
I've tried to do this by the following operation:
int result = ...
2
votes
2answers
264 views
Java get first and last 2 byte from int var
I want convert an int into 2 bytes representing that int.
Probably must use bitwise and bit shifting, but I dont know what to do.
int x; /* val to convert */
// ?????????
int b12; /* the first 2 ...
2
votes
2answers
99 views
Turning bits into values
How does a computer know that (int x, y) x << y means shift over y bits? i dont mean the shift part. I mean the y part. Does the computer shift x by one and subtract one from y until y == 0? if ...
2
votes
7answers
174 views
Does a/the C compiler carry out shift operations at compile time?
It was mentioned that a well written compiler for C should carry out the shift opeators at compile time (i.e. not run-time); for example in this code the shift left - <<. Can anyone attest to ...
2
votes
4answers
131 views
Nested templates vs shift operator
I have been reading all around about be aware >> as ending of nested template and >> as shift operator...
Now I have tried it in my MSVS2010 and no problem occured.
std::map<int, ...
2
votes
1answer
176 views
Java Bit Manipulation - What does (num >>= 1) do?
I was looking at some code that outputs a number to the binary form with prepended 0s.
byte number = 48;
int i = 256; //max number * 2
while( (i >>= 1) > 0) {
...
2
votes
3answers
562 views
How to change 4 bits in unsigned char?
unsigned char *adata = (unsigned char*)malloc(500*sizeof(unsigned char));
unsigned char *single_char = adata+100;
How do I change first four bits in single_char to represent values between 1..10 ...
2
votes
2answers
233 views
Why does the F# Bitwise Operator pad with 1's for signed types?
I was looking at F# doc on bitwise ops:
Bitwise right-shift operator. The
result is the first operand with bits
shifted right by the number of bits in
the second operand. Bits shifted off
...
2
votes
5answers
132 views
How is shift operator implemented?
I want to know when I do 4<<2, what exactly happens underneath?? are there any multiplications performed or how is the value computed. if you have a reference to the implementation of shift ...
1
vote
3answers
116 views
BitShifting, Storing 3 u_int8_t in one integer and read out again
i have a question for you guys which is driving me nuts for 2 days already. Maybe its because i am missing the basics on bit shifting but somehow i don't get it into my head. What i want is a simple ...
1
vote
1answer
58 views
Java how do you deobfuscatate shift and & values?
Lets say I got this for example (from java obfuscation) with a highly overflowed shift value
x = buffer[count + -3] << 0x8f553768 & 0xff00
From trying I figured this out..
8 = 0x ff 00
...
1
vote
2answers
362 views
Bit shift operators
I came across such a programming interview question. But it is not obvious to me how you know bit shift can be used here.
Someone kindly explain. Thanks.
An array is of size N with integers between ...
1
vote
1answer
140 views
Get 30th bit of the lParam param in WM_KEYDOWN message
I need to get the 30th bit of the lParam param passed with the WM_KEYDOWN message. This bit as written here allows me to know if the key was pressed before. Is this code right to get it?
(lParam ...
1
vote
1answer
180 views
verilog shift operator basic error
I am trying to compile my program but am getting errors when using the arithmetic right shift operator: ">>>". Here is the code:
if (from_id_hmic[117:115]==3'b011)
begin
...
1
vote
4answers
142 views
Packing record length in 2 bytes
I want to create a ASCII string which will have a number of fields. For e.g.
string s = f1 + "|" + f2 + "|" + f3;
f1, f2, f3 are fields and "|"(pipe) is the delimiter. I want to avoid this ...
1
vote
7answers
553 views
Bit shifting confusion in C#
I have some old code like this:
private int ParseByte(byte theByte)
{
byte[] bytes = new byte[1];
bytes[0] = theByte;
BitArray bits = new BitArray(bytes);
if ...
0
votes
5answers
78 views
What is the exact usage of shift operator in C
I thought shift operator shifts the memory of the integer or the char on which it is applied but the output of the following code came a surprise to me.
#include <stdio.h>
#include ...
0
votes
2answers
131 views
Bit shifting number gives wrong output `std::cout`
unsigned int command = 4;
cout << command;
command = (command << 1);
cout << command;
command = (command << 1);
cout << command;
Output:
4
8
10
Why is is the ...
0
votes
1answer
93 views
Simple Assignment
Here's my problem. I have the following structure defined
struct idt_reg{
unsigned short limit;
unsigned int base;
}__attribute__((packed));
In my code I do the following assignment
unsigned ...
0
votes
3answers
96 views
operator>> and << output being nulled when outputted
i dont understand why the output of both functions are getting nulled when i output them:
class uint128_t{
private:
uint64_t UPPER, LOWER;
public:
// constructors
uint128_t(){
...
0
votes
2answers
76 views
Chain value of string variable with some text and print it to standard output in C++
I want to do something really simple: I have function that has string parameter and I want to chain it to some constant string, then output result to console like this:
void test(string s){
cout ...
0
votes
2answers
375 views
BigInteger unsigned left or right shift
I am reimplementing a function using BigInteger in place in int. Now there is step
h = n >>> log2n--
But I am facing trouble here. In original code h, n, log2n all are int type, if I set ...
0
votes
1answer
50 views
how do i translate the >>> operator in JavaScript to vb.net
I am doing code conversion from JavaScript to vb.net. I am stuck with the >>> operation.
see the sample code and my attempt below:
JavaScript:
function test(a, b){
return (a << b) | (a ...
-1
votes
7answers
226 views
When is a shift operator >> or << useful? [closed]
Possible Duplicate:
When to use Shift operators << >> in C# ?
I've in programming a while and I've never used the shift operator. I could see how it could be helpful for ...
-1
votes
2answers
92 views
Unexpected Outputs in Left Shift Operation…?
I read that Left shift e1<
x=5;
printf("%d",x<<3);
Output is 40 but according to me it should be 30.
and for x<<4 it is 80 .(but expected 40).
Although for x<<1 and x<<2 ...