The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
21 views

Converting 16-bit integer to 8-bit integer?

I'm implementing C code to copy a 16-bit sign and magnitude integer to an 8-bit sign and magnitude integer. Is that even possible? Could someone please explain how to do this? code snippet: int16_t ...
-1
votes
1answer
46 views

Time Complexity of bit operations

As a result of some original research and the need to develope tools for it I've come up with some new and I hope better/quicker ways of performing certain mathematical operations. Atm I'm working on ...
2
votes
1answer
53 views

Why are x and z evaluating differently if “x=(date<<7)>>12” and {y=date<<7;z=y>>12;}?

It is really frustrating.What is the possible reason that (date<<7)>>12 is giving a different result from y>>12 where y is date<<7?.I should add that the latter is working ...
0
votes
3answers
79 views

bitwise shift operator under different platforms (windows, mac os, android)

I am debuging a function hashKey. The problem is that it generates different result for the same input under different platforms, windows/win ce, mac os, android. Here is the code: unsigned long ...
1
vote
1answer
40 views

Does using bit shifts really speeds up the program on modern systems?

I've heard that bit shift operation in modern systems are actually slower than multiplying and dividing, because they have to pass more arguments. Is that true?
2
votes
2answers
79 views

What happens if we bitwise shift an integer more than its size [duplicate]

On Visual Studio compiling following C code , the result is 4 . void main() { int c = 1; c = c<<34;} The assembly code as seen from on Visual Studio disassembly window is shl eax,22h ...
1
vote
2answers
70 views

Bitshift - Need help to understand the code

I am just trying to learn bitwise / shift operations. I came across the below program but don't understand the AND condition part (checker & (1 << val) in the below program. When will the ...
4
votes
4answers
144 views

C# Left Shift Operator

There's a statement a co-worker of mine wrote which I don't completely understand. Unfortunately he's not available right now, so here it is (with modified names, we're working on a game in Unity). ...
2
votes
3answers
124 views

Bit shifting a character with wrap? C++

I have a binary file that will be read in as characters. Each character was bit shifted to the left unknown number of times (assuming with wrap) by someone else. I want to be able to read in each ...
3
votes
5answers
276 views

Left shift operator in c

#include<stdio.h> #define macro(a) a=a<<4; main() { int a=0x59; printf("%x",a); printf("\n"); macro(a) printf("%x",a); } For the above code , i am getting the below ...
3
votes
2answers
219 views

Faster way for any number(16bit) divide by 3 in assembly without DIV opcode

I want to divide a unsigned integer by 3, in 8086 assembly or similar , any way to do it faster which I dont want to use DIV opcode.
0
votes
7answers
1k views

What does AND 0xFF do?

In the following code: short = ((byte2 << 8) | (byte1 & 0xFF)) What is the purpose of &0xFF? Because other somestimes I see it written as: short = ((byte2 << 8) | byte1) And ...
9
votes
1answer
2k views

unsigned right Shift '>>>' Operator in Java [duplicate]

Possible Duplicate: Why is (-1 >>> 32) = -1? The unsigned right shift operator inserts a 0 in the leftmost. So when I do ...
0
votes
2answers
88 views

PHP Unsigned Right Shift - Malfunctioning

So, when using my method to preform a ( >>> ) unsigned right shift in PHP, the result is incorrect when the numbers involve negatives. PHP Application Results: INPUT: 10 >>> 3 INPUT: -10 ...
0
votes
2answers
251 views

Java Bitwise AND operation between a double and int value [closed]

I have a latitude value as double and I want to perform a Bitwise AND operation on it followed by right shift of bits. Following is my line of code: pBuffer[1]=(latitude_decimal_degrees & ...
0
votes
0answers
86 views

how to create and use a bitwise shift function

There is no << or >> operator in the language I'm working with (Brightscript). I want to create a bitwise shift function that works the way the << and >> operators in c do. Is the ...
6
votes
1answer
598 views

logical shift right on signed data

Before anything, no this is not my homework, it's a lab given by a book called "Computer Systems A Programmer's Perspective" (Excellent book btw) I need to perform a logical shift right on signed ...
2
votes
3answers
191 views

Confused by undefined C++ shift operator behavior and wrapping “pattern space”

I'm confused by something I read in the Shift Operators section of an article on undefined C++ behavior. On the ARM architecture, the shift operators always behave as if they take place in a ...
0
votes
1answer
78 views

converting a No. literal from 64 to 32 bit compiler in ubuntu

As far as I know in 64 bit compiler, (it depends on the compiler) the max size for unsigned long long could be like for instance 18446744073709551615ull , So I tried to search and replace the literal ...
1
vote
3answers
84 views

Why are two different results returned when using following two shift operator statements in Java

When: byte[] b = {-128, 0, 0, 0}; long total = 0; The first expression returns -2,147,483,648: for (int i = 0; i < b.length; i++) { int shift = (b.length - 1 - i) * 8; total += (b[i] ...
0
votes
2answers
196 views

How do the left shifting operator preserve sign?

I looked in this question to understand why there is no arithmetic left shift operator in most languages including Java . But then how do we deal with negative integers because left shifting would ...
1
vote
6answers
118 views

Bits Shift in C- is the i bit on?

I'm trying to understand the following function which decides whether a bit is on: int isBitISet( char ch, int i ) { char mask = 1 << i ; return mask & ch ; } First, why do I get a ...
5
votes
3answers
361 views

What is the difference between operator >> and operator >>> in java?

I used to use the >> operator for right shifting. Now I've just replaced it with >>> and found the same result. So I can't figure out whether these two are fundamentally equal or not.
2
votes
2answers
434 views

Bit-shifting with Int64

An Int64 variable needs to be shifted. I am parsing pseudo mathematical functions from a database file. The Variables are uint32 or int32 so i did put them into an Int64 to handle them equally without ...
0
votes
1answer
191 views

C++ Bitset << operator not working. Pointer to bitset variable

I have a set of bitsets pointers in an unordered_map static unordered_map< size_t, bitset<BITSIZE>* > systemBits; And my function template<typename system> static ...
0
votes
2answers
107 views

Why the output is always -1?

This is the code: char x=-1>>2; printf("%d",x); Even if i do x = -N>>2 it will give 1 only. x = -1 => 11111111 x= -1>>2 ==> 00111111 = 3F ?? Also even if I do int x = ...
1
vote
2answers
453 views

Is using bitwise operations really faster than regular math on modern processors? [duplicate]

I've seen multiple sources (some here, and on the wikipedia article on bitwise operation) say that using bitshifting to calculate is faster than normal multiplication/division/addition. However, ...
0
votes
4answers
261 views

Is bit shifting by X faster than bit shifting by one X times?

Question #1 In Java, is shifting multiple times more expensive than using a single statement to shift the by the same number? For example, is int x = 5; x = x << 16; Faster than int x = 5; ...
1
vote
4answers
144 views

Bit Twiddling - Confused With This Program's Output

So I was messing around with Bit-Twiddling in C, and I came across an interesting output: int main() { int a = 0x00FF00FF; int b = 0xFFFF0000; int res = (~b & a); ...
7
votes
2answers
218 views

Manipulating 80 bits datatype in C

I'm implementing some cryptographic algorithm in C which involves an 80 bits key. A particular operation involves a rotate shifting the key x number of bits. I've tried the long double type which if ...
0
votes
2answers
72 views

What do the << and >> operator do?

I came across some code as noted below and am confused as to what it's doing. hash += (hash << 10);
2
votes
4answers
1k views

Right shift operator in C?

I got the following code: int main(int argc, char *argv[]) { char c = 128; c = c >> 1; printf("c = %d\n", c); return 0; } Run the above code on win xp 32 bit, I got the ...
2
votes
2answers
567 views

Obtain low and high order nybbles from byte within Java ByteBuffer

I need to extract two integer values from a byte stored within a ByteBuffer (little endian order) ByteBuffer bb = ByteBuffer.wrap(inputBuffer); bb.order(ByteOrder.LITTLE_ENDIAN); The values I need ...
5
votes
1answer
511 views

Bit shifting in Ruby

I'm currently converting a Visual Basic application to Ruby because we're moving it to the web. However when converting some algorithms I've run into a problem concerning bit shifting. How I ...
1
vote
3answers
199 views

Bits in C, how do I access the underlying bits in a C float?

Given a two floating point Numbers A and B, which are command line arguments, I must create methods to do bitwise operations on them. Including And, Or, Not, xOr, floating Point addition etc... How ...
6
votes
2answers
689 views

Why does Java `BitSet` not have `shiftLeft` and `shiftRight` functions?

Is there any particular reason why these are missing? They do exist in BigInteger, but due to the immutable design pattern of BigInteger these are usually awfully slow. BitSet is much nicer because ...
4
votes
9answers
404 views

Cannot understand shift operator behavior in C code

Look at this sample C code (extracted a test case as an example): main() { unsigned long a, b; int c; c = 32; a = 0xffffffff << 32; b = 0xffffffff << c; printf ("a=%x, ...
5
votes
4answers
1k 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 ...
3
votes
1answer
166 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, ...
4
votes
4answers
2k 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, ...
6
votes
3answers
572 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
303 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 ...
3
votes
1answer
380 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
4answers
175 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) >> ...
5
votes
3answers
4k 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
368 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 ...
0
votes
5answers
138 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 ...
1
vote
2answers
1k 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 ...
1
vote
3answers
375 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 ...
0
votes
2answers
208 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 ...

1 2