A bit shift operation moves the bits contained in a binary numeral or bit pattern to the left or to the right.
0
votes
1answer
29 views
Safety of bitshift operators on different-width datatypes
Bitwise operators have never been my forte. I'm wondering when explicit casts are necessary when using bit-shifts.
For example, is i&1 == i%2 guaranteed to be true whenever i is an unsigned ...
0
votes
2answers
43 views
Convert long to “unsigned, 4 byte integer in network byte order” with ByteBuffer
The protocol I'm using requires sending back the current position in a file as a "unsigned, 4 byte integer in network byte order". There are several questions on this, but they are assuming I'm using ...
2
votes
1answer
55 views
find set bits positions in a byte
I was tyring to create a sparse octree implementation like the people at nVidia ("Efficient Sparse Voxel Octrees") were doing for their voxel things when I came across this issue:
I have a bitfield ...
0
votes
0answers
27 views
Linear Feedback Shift Register algorithm
I'm trying to code my own implementation of Linear Feedback Shift Register on Matlab in order to generate a pseudo-random sequence of numbers. Suppose I need to generate a sequence from 1 to 16,384 ...
0
votes
0answers
26 views
Bitshifting by negative Value results in the Opposite Shift!! Anywhere Defined in Some Document
I found a way this should be a optimized way. But it should be buggy too.
In a way its not portable for Arm (could be ?).
So in Gcc (3.4.4) I found that Left shifting a number by a negative value is ...
3
votes
2answers
92 views
why does left shift with variables generate different result from that with constant?
After compiling the code below, i got a weird result, a =1 while b =0. Could anyone explain what's going on behind the scene?
#include<iostream>
using namespace std;
int main(){
int n=32; ...
4
votes
1answer
86 views
Java loop and shifting
To cut a long story short, I'm trying to generate Huffman codes from a canonical Huffman list. Essentially, the following two loops should run, and generate a binary string. The code is:
for (int i ...
1
vote
1answer
59 views
Is BitArray faster in C# for getting a bit value than a simple conjuction with bitwise shift?
1). var bitValue = (byteValue & (1 << bitNumber)) != 0;
2). using System.Collections.BitArray with a Get( bitNumber ) method
What is faster?
In what situations for the .NET projects ...
-2
votes
2answers
77 views
Why do I get a negative result if I left-shift a positive number with a negative value?
Can you please tell me how does why the following code gives a negative result due to the left shifting of an unsigned number a with a negative value?
int main(void)
{
unsigned int ...
-1
votes
2answers
138 views
How to reverse bitwise shift?
I have this code:
user_submitted = raw_input("Enter Password: ")
if len(user_submitted) != 10:
print "Wrong"
exit()
verify_arr = [193, 35, 9, 33, 1, 9, 3, 33, 9, 225]
user_arr = []
for char in ...
0
votes
1answer
60 views
shift right operator on strings in c#
I have a stream reader object "file" and a character type variable "hex"
System.IO.StreamReader file = new System.IO.StreamReader(filename);
char[] hex=new char[20];
int @base;
the code i want to ...
1
vote
1answer
34 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?
1
vote
2answers
54 views
unsigned int - shifting and oring creates negative value
I am reading the header of a wav file and filling my class-members using << (left-shift) and | (or) as I read the raw bytes from file. Now, coincidently I have the following situation
where ...
1
vote
1answer
64 views
Read a byte starting from a specific bit in a file - C#
I need to read a byte from a .bin but starting from the specific bit, for example:
If I have this two bytes:
01010111 10101100
The program should be able to read from any bit, let's say starting ...
0
votes
0answers
71 views
How to divide integer by a constant integer with right shift operators? [duplicate]
I'm interested how to do this, because I just found out you can do integer multiplication easily, by using left shift operators:
x * 25 = (x << 4) + (x << 3) + x
Where the sum of base 2 ...
0
votes
3answers
117 views
Bit shifting and assignment [duplicate]
This is sort of driving me crazy.
int a = 0xffffffff;
int b = 32;
cout << (a << b) << "\n";
cout << (0xffffffff << 32) << "\n";
My output is
-1
0
Why am I not ...
0
votes
1answer
35 views
Signed left shift behaviour
public class Shift {
public static void main(String[] args) {
for(int i = 0; i < 32; ++i){
System.out.println(-0x55555555 << i);
}
}
}
Running the ...
-1
votes
1answer
72 views
What does assignment into a right shift mean in C++?
I've come across some puzzling code:
int mask = someFunction();
mask>>=1; // What does this line do?
I've never seen this pattern before and would like to understand what it is doing.
3
votes
6answers
112 views
Bitwise Operations Java - Long to Binary
I found this code for an arithmetic encoder and I'm a bit confused as to where the values mentioned in the comments are coming from.
Can anyone go through whats happening in these operations step by ...
0
votes
1answer
41 views
“suffix or operands invalid for 'shr'”
I'm trying to get rid of the lower bits (before doing a popcnt) in a register, but can't seem to get the syntax for the instruction right. I want to clear the lower %rdx bits from the value in %r8d. ...
-1
votes
1answer
58 views
Bit shifting results in negative number
I'm working on an assignment that deals with compression and decompression. More specifically, a variation of run-length encoding (9-bit blocks). The issue I am having deals with the sign of the ...
0
votes
1answer
46 views
VHDL Shift With Concatination
I am writing what I though would be a fairly standard VHDL code but the execution keeps coming back on me.
The code is meant to be a simple game on a Nexsys 3 board. The first player selects a ...
0
votes
0answers
33 views
Rotate each byte in Integer
Im trying to make a function that rotate each byte in an integer(i got only one bit set in the integer and the last byte isnt used) but im stack this what i got so far
private int RotateBytes(int ...
0
votes
1answer
190 views
shrl vs sarl .. x86 Assembly gnu
I'm compiling my code with gcc and looking at the assembly, what is this code exactly doing?
shrl $20, %edx
leal (%edx,%eax), %eax
sarl 1, %eax
Say that the variable X is at the edx register, and ...
0
votes
3answers
334 views
converting little endian hex to big endian decimal in C
I am trying to understand and implement a simple file system based on FAT12. I am currently looking at the following snippet of code and its driving me crazy:
int getTotalSize(char * mmap)
{
...
2
votes
3answers
110 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 ...
0
votes
2answers
68 views
Bitshifting elements in an array
I have an assignment in which I must read a list of 4000 names from a text file and sort then into a C style array as they're being read in (rather than reading them all then sorting). Since this is ...
1
vote
1answer
61 views
Math.random and arithmetic shift
If I have the following code in JavaScript:
var index1 = (Math.random() * 6) >> 0;
var index2 = Math.floor(Math.random() * 6);
The results for index1 or index2 are anywhere between 0 and 6.
...
4
votes
1answer
86 views
Why does shifting more than the allowed bits still work?
I have an int8_t and I wanted to see what would happen if I shift it left further than 8 bits. So this is what I did:
int8_t x = 1;
std::cout << (x << 10);
For some reason this returns ...
0
votes
2answers
259 views
C# - Convert ARGB Color to RGB555
I have an algorithm that converts RGB555 values to a System.Drawing.Color object;
public static Color ToColor(ushort color)
{
int a = color & 0x8000;
int r = color & 0x7C00;
int g ...
1
vote
1answer
124 views
square root by bit shift
I am studying the fast square root algorithm by bit shift. I was stuck by the code from wikipedia.
short isqrt(short num) {
short res = 0;
short bit = 1 << 14; // The second-to-top bit ...
2
votes
3answers
104 views
Naturally aligned memory address
I need to extract a memory address from within an existing 64-bit value, and this address points to a 4K array, the starting value is:
0x000000030c486000
The address I need is stored within bits ...
0
votes
1answer
171 views
Java bitmask range
I need to extract an exact range of bits from an existing long, specifically I need bits 51:12 from a 64 bit value.
The value is:
0x0000000415B2C01E
So the value of bits 51:12 should be:
...
1
vote
3answers
73 views
C# Reverse a Bit Shifting
Is there a way to reverse the following bitshift so I can extract the values of 6972307 / 1 / 2 / 3? If not, I only really "need" the (1 << 17) value.
long shifted = (6972307 << 22) | (1 ...
-1
votes
1answer
83 views
displaying values of a card using bits in C
I have a card game where I need to display the value of the card after I shuffle I display the value of the card using values (x >> 1)& 0xf where x iterates through the list of 13 cards this ...
0
votes
1answer
82 views
Conversion of a hash function from C# to Javascript has issues with bitwise math
I've got the following C# hash function (also found on SO!), which I'm using in a bunch of apps covering a few different platforms:
public static int GetStableHash(string s, int hashlength)
{
...
0
votes
3answers
127 views
Are negative numbers that are left shifted *always* filled in with “1” instead of “0”?
I'm independently studying bit-shifting by porting some C++ functions to .NET's BigInteger. I noticed that when I shifted BigInteger the void was filled in with ones.
I believe this has to do with ...
0
votes
1answer
68 views
How do I properly loop through and print bits of an Int, Long, Float, or BigInteger?
I'm trying to debug some bit shifting operations and I need to visualize the bits as they exist before and after a Bit-Shifting operation.
I read from this answer that I may need to handle backfill ...
2
votes
2answers
89 views
Does bit-shifting always take the Endian architecture into consideration?
Suppose I'm porting code from C++ and need to emulate the same Bit-shifting techniques in C#:
Whenever I perform bitshifting, do I ever have to consider the Endain-ness of the architecture?
0
votes
2answers
104 views
Shift and masking in C
I have this problem. I have a payload that dinamically change its length. If I don't cut this payload, I will have also informations that are rubbish for me. So I want to cut the payload in base of my ...
-1
votes
3answers
135 views
Should I be able to bit-shift >> a byte array?
I am trying to understand why BigInteger is throwing an overflow exception. I tried to visualize this by converting the BigInteger to a byte[] and iteratively incrementing the shift until I see where ...
0
votes
1answer
64 views
Using fwrite() with huffman encodings - Bit Shifting and Bit Manipulations
I am doing Huffman encoding and I am having trouble understanding how to use fwrite() to write our encodings to the output.
Let's say I have these encodings:
Character A (65) gets an encoding of 101
...
0
votes
2answers
54 views
bitwise shift in uint
uint number = 0x418 in bits : 0000010000011000
uint number1 = 0x8041 in bits: 1000000001000001
uint number2 = 0x1804 in bits: 0001100000000100
I cannot get 0x8041 with
number >> 4;
or
...
0
votes
2answers
72 views
How a long data type will be stored in a memory?
My Need:
For any non - negative unsigned long a,
Input a = 5; Ans should be 3
Input a = 12; Ans should be 4
Input a = 1; Ans should be 1
Input a=0 Ans should be 0
...
-2
votes
1answer
104 views
Shift Right Logical from an ADD and NAND? [duplicate]
Asking this question a second time because last time people avoided my question and suggested solutions I could not use. I'm making a multiplier in a very simple assembly language in which I have BEQ, ...
0
votes
2answers
113 views
Byte-wise output of uint32_t
I am trying to understand bitwise operators better. I have a number of type uint32_t which I am trying to output byte by byte. The code that does that is:
void printByteWise(uint32_t num) {
...
0
votes
4answers
163 views
Shift Right Logical from just ADD and NAND?
I'm making a multiplier in a very simple assembly language in which I have BEQ, NAND, and ADD to create a SRL. I also have to keep the multiplier under 50 lines (16 used thus far) so hopefully the ...
0
votes
1answer
150 views
PIC Bit Masking and Shifting for 4 Bit LCD Control
I have a question regarding both masking and bit shifting.
I have the following code:
void WriteLCD(unsigned char word, unsigned commandType, unsigned usDelay)
{
// Most Significant Bits
// ...
0
votes
2answers
58 views
I noticed that there's a difference between using bitshifting and n^power in python: Can someone explain why?
First one:
for i in range(4):
return (1 << i)
Second one:
for i in range(4):
return (2^i)
Can someone explain why there's a difference between the 2?
0
votes
1answer
234 views
Bitwise operations and shifts
Im having some trouble understanding how and why this code works the way it does. My partner in this assignment finished this part and I cant get ahold of him to find out how and why this works. I've ...






