Bitwise refers to a bitwise operation which operates on one or more bit patterns or binary numerals at the level of their individual bits.

learn more… | top users | synonyms

0
votes
1answer
16 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 ...
-2
votes
2answers
35 views

Difficulty understanding bitwise comparison

This operation should return 0 but the result is 3: echo 3221225475 & 65535; or echo 3221225475 & 0x0000FFFF; Why does this happen? Last edit: The result should be '0' so i still don't ...
2
votes
6answers
95 views

add and remove last bit

I am trying to determine the next and previous even number with bitwise operations. So for example for the next function: x nextEven(x) 1 2 2 2 3 4 4 4 and for the ...
4
votes
3answers
70 views

How to reverse a section of bit digits in C?

In short, if I'm dealing with a number in binary, like 0000 0110, and suppose I want only the last 3 bits to be reversed, are there any methods that translate this into 0000 0011? I have seen other ...
-3
votes
1answer
52 views

Int verification

Looking at android support library i saw something i can't think why they do it: /** * Simple gravity to string - only supports LEFT and RIGHT for debugging output. * * @param gravity Absolute ...
0
votes
1answer
31 views

How do I parse a bit field in PHP?

I want to parse bit fields with PHP similar to this: 584392900608 This number was created in Rails, with the FlagShihTzu extension. I tried several PHP classes, but I couldn't decipher them.
1
vote
2answers
47 views

Bit wise operator

Take any number of following type 2, 2^2(=4), 2^3(=8) , 16 ,32 , 64 ... If we will make ORing (|) of two numbers like 2| 4 = xyz 0010 | 0100 = 0110 then for checking this whether this number ...
0
votes
1answer
19 views

bitwise meaning in createparams class

I'm trying to understand the meaning of each bit in the createparams class. i tried to find any information about it, even in msdn web site, but nowhere explains the meaning for the bits. Does someone ...
1
vote
0answers
64 views

C++ library for fast bit compression and arithmetic

I'm working on a C++ library to manage very large value masks (each 2^32 bits, about .5 GB). Each value mask will represent possible values of an 32-bit int. For example, 00101000 would represent the ...
2
votes
0answers
38 views

Proper way to find IPv6 in CIDR Range MySQL

I have a MySQL blacklist table, with either single IPv4, IPv6 or CIDR ranges of one of both types stored in it. My table looks somewhat like this: +-----------+-------------+ | Name | Type ...
0
votes
2answers
99 views

Is there a difference in the ways of converting from integer to integer?

Is there a difference when I want to convert an integer(for example 32-bit integer/int) to another integer type(for example 8-bit integer/byte). Here is some example code for the two ways I can ...
1
vote
3answers
72 views

I need help on Bit Twiddling

I love to see people writing Bit Twiddling code but I just can't understand it at all. Gone through Hacker's Delight and http://graphics.stanford.edu/~seander/bithacks.html, but I failed to understand ...
0
votes
2answers
58 views

How to do file I/O with std::vector<bool>?

I need to implement a Boolean data container that will store fairly large amount of variables. I suppose I could just use char* and implement C-style macro accessors but I would prefer to have it ...
1
vote
2answers
22 views

Manipulating Bit-wise Operations

There is this puzzle question of creating an equivalent bit-wise & with only | and ~ operators. I've been doing brute force combinations of | and ~ using 6 (0110) and 5 (0101) trying to get 4 ...
3
votes
3answers
91 views

Generating all integers n which n&m==n(m is a given integers) effeciently in C

& is bit AND in C. Example: m= 21(10101) The result: 0 16 4 1 20 5 17 21 My code: for(int i=0;i<=m;i++) if ((i&m)==i) printf("%d ",i); This will be very slow when m is ...
1
vote
4answers
54 views

How do i flip the value of a single bit?

I' ll be honest, this is an homework i just can' t get done. The task is to handle 8 different checkboxes by using a single byte. The constructor of the form which contains the checkboxes takes a byte ...
0
votes
1answer
11 views

SMBIOS Enum Values. Documentation error?

I'm trying to write a simple parser for SMBIOS on Windows. While reading the documentation for the 2.6.1 version (2.6 is the SMBIOS version on my laptop), I came across the System Information Entry ...
0
votes
1answer
54 views

Iterating through a bit sequence and finding each set bit

My question is more or less what's in the title; I'm wondering if there's a fast way to going through a sequence of bits and finding each bit that's set. More detailed information: I'm currently ...
0
votes
1answer
23 views

My checksum of 5 bytes of data does not

I'm processing 6-byte messages from a piece of serial hardware. In their manual, the manufacturer has laid out that the checksum of each message (its 6th byte) is composed of 'the low byte of the ...
2
votes
4answers
112 views

How to get the binary of a double in C? [duplicate]

For a char or int, I can do this: void print2(char c)//print char c in binary { for(int i=7;i>=0;i--) if ((1<<i)&c) printf("1"); else printf("0"); } But for double ...
0
votes
2answers
23 views

How to divide a byte array into bit places

How can i store two numbers in a byte array or set the bits at diffrent positions? like divide the array in two blocks. one block of 5 bits and second of 3 positions. so storing 6 and 3 would look ...
0
votes
1answer
91 views

Bit operators issues and Steganography in image processing

Steganography link shows a demonstration of steganography. My question is when the number of bits to be replaced, n =1, then the method is irreversible i.e the Cover is not equal to Stego (in ideal ...
1
vote
4answers
53 views

How to do bitwise ANDING in c using just ~ and |

I need to make a function using just ~ and |, such that function f(6, 5) will return 4 as the answer.
0
votes
3answers
94 views

Bit shifting 16 bit from left to right C#

I have an array of 8 bit with the following representation. Data[i] = 192=11000000, data[i+1]= 85=01010101, i need to transform the represenatation into 16bit array where newArr[i] =343=101010111. ...
0
votes
1answer
17 views

reading bit by bit from a binary file with c

I need to read 256 bit for each step until binary file ends.Is there any operation in c to read bit by bit? I use fread function and read 32 chars. For all chars i shift bit by bit for 8 times. After ...
2
votes
1answer
24 views

JavaScript bitwise undefined pitfalls?

What is the logic of bitwise operators on undefined??? var x; console.log(x); // undefined console.log(x^7); // 7 console.log(7^x); // 7 console.log(x|7); // 7 console.log(7|x); // 7 ...
0
votes
2answers
45 views

Segmentation fault in bitwise component sum

So my lab is basically take a string in from cin, separate it into components (into its various chars) and then do a component sum of all the chars using bitwise operators. Finally, print out the ...
-6
votes
0answers
43 views

Bitwise operations on pointed memory; finding number and locations of nonzeros [closed]

There are (fixed) bytes sized memory parts that should be examined against patterns given by separate algorithm. Every element/position is an octal digit value, so in theory size could be halved using ...
1
vote
2answers
49 views

difference between similar bitwise operators

in refereing to bit-wise operators, what is the difference between ! and ~ ? I feel like they both flip the bits, but 1 maybe adds a 1 to the final answer? ~0xC4 compared to !0xC4 Thanks!
-1
votes
2answers
136 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
3answers
49 views

struggling to understand bitwise operators in python

I am struggling to understandwhat the "if (i >> j) % 2 ==1 " does in the following function or any function for that matter? def powerSet(items): N = len(items) for i in xrange(2**N): ...
1
vote
1answer
49 views

Java bitwise operation Vs BigInteger

Is there an advantage of using pure bitwise operations (& | ^ ~) over using BigInteger (BigInteger.and BigInteger.or) for bitwise operations in terms of performance? memory? anything else? For i ...
1
vote
3answers
42 views

SQL Bitwise not (~)

Can someone please explain why select ~1 gives the result -2 Perhaps there is a lot for me to learn about the actual bits of number types. What resource would you recommend?
2
votes
1answer
54 views

Winforms control for binary representation of an integer

I'm perhaps not articulating this correctly (and apologies if this is the case), but is anyone aware of a Winforms control that could be used to both represent an integer in binary form, and allow the ...
0
votes
3answers
74 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 ...
0
votes
1answer
200 views

Bitwise Remainder Operator

I've been messing around with bitwise operator problems I've found on the internet and have found one that just completely stumps me. int rpwr2(int x, int n) { //Legal ops: ! ~ ^ | + << ...
0
votes
1answer
43 views

Format negative integers in two's complement representation

I would like to represent an negative integer in bits, using two's complement representation. Using standard Python bit representation utilities doesn't help much: >>> bin(-5) '-0b101' ...
1
vote
2answers
64 views

Why does bitwise AND with byte in JAVA do this?

I'm messing around with bitwise operators, and I was trying to convert a negative byte to an unsigned 8 bit value, and this is what people suggested: System.out.println(-20 & 0xFF); //bitwise ...
0
votes
1answer
38 views

Division by Multiplication and Shifiting

Why when you use the multiplication/shift method of division (for instance multiply by 2^32/10, then shift 32 to the right) with negative numbers you get the expected result minus one? For instance, ...
0
votes
1answer
30 views

recognize operation/function with 2 values by result

Updated: I have some data structure. I have no information what structure it is and how values are stored, but it should contain array of numeric values (integer) Bytes (in decimal): 0 20 13 4 25 ...
0
votes
0answers
19 views

Bitwise “shrinking” of binary stream

Is there a way to "shrink" a number, say 100 000 101 000 down to 1010 ? I need to take a number that may be given to me as a hexadecimal, or in chunks of 1,2,3,etc. and convert it down to a sequence ...
4
votes
1answer
62 views

bitwise: different behaviour with negative input value

I'm on the Hardware/Software interface course hosted on Coursera, from where i'm sure you've seen a fair few of these questions.. One of the assignments is to determine whether 2's complement integer ...
0
votes
3answers
91 views

C - Is there any way to check if a number is equal to 1 using bit checks?

This is more just a question of interest - I'm not sure how it would actually be applicable. Anyways - is it possible using bit-checks to see if a number is equal to 1?
1
vote
1answer
66 views

Mathematical equation for OR bitwise operation?

Is there a mathematical expression for the bit-wise OR operation using basic operators such as *,+,-, and /? An example of what I am looking for would (for shifts) be n<<a turning into ...
1
vote
3answers
194 views

How do I return 0 using bitwise operations?

I have the following function int sign(int x) { int sign = (x >> 31); sign = sign | 1; return sign; } I wish for the following: return -1 for a negative number (first line) return 1 ...
1
vote
2answers
45 views

Valid way to move bits in java

I'm working on an assignment for school and I'm getting strange output. So, I figured I should start checking some of my more basic methods before I get to the fancier ones. The question I have is ...
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 ...
0
votes
1answer
39 views

Lua: detect rising/falling edges in a bitfield

I'm calling a function that returns an integer which represents a bitfield of 16 binary inputs each of the colors can either be on or off. I'm trying to create a function to get the changes between ...
0
votes
3answers
44 views

Matching bits algorithm

I have a problem wherein I need to find the number of matching bits (from left to right) between two integers Inputs: 2 Variable A and B to store my decimal numbers Output: Numbers of bits in A and ...
0
votes
1answer
61 views

PostgreSQL: bit to smallint

As far as I was able to understand in PostgreSQL you are not able to convert from hex or bit to smallint or the other way around. To convert from int2 to bit16 one can do something like this: select ...

1 2 3 4 5 26