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

-2
votes
1answer
42 views

NOT of 64 bit number giving wrong results in c

there are two numbers a and b, both 64 bits. Code: a = a|b; if(!(a&b)){ } Now in the above scenario b's 34th bit is on and a have some bits on. So, according to the situation !(a&b) should ...
1
vote
3answers
34 views

Extracting certain bits from binary data

I have a binary number that looks like this: 00000000 00000000 00000011 00001101 = 781 integer value = integer name "packed" How am i able to extract each of those as separate integer values ...
1
vote
3answers
35 views

read single bit operation python 2.6

I am trying to read a single bit in a binary string but can't seem to get it to work properly. I read in a value then convert to a 32b string. From there I need to read a specific bit in the string ...
0
votes
2answers
109 views

bitwise division by multiples of 2

I found many posts about bitwise division and I completely understand most bitwise usage but I can't think of a specific division. I want to divide a given number (lets say 100) with all the multiples ...
-4
votes
0answers
49 views

using bitwise operator is more time efficient [closed]

I heard that all the code execute in binary.So my question is that execution of code with particular format in binary or ELF is more time efficient or not means the code which executed in particular ...
-5
votes
3answers
69 views

Multiplication of 9 with bitwise operator

Can somebody tell me how to find the table of 9 with using Bit wise operator.A detailed description will be greatly appreciated.
1
vote
1answer
32 views

Rails: A database-independent datatype that's suitable for bitwise operations

I have a Rails app with a couple resources that I need to run queries on the involve bitwise operations. Right now, I'm using PostgreSQL, and I created a migration for my 'user' model that uses the ...
0
votes
2answers
32 views

Get enum values from bit that represenst combination of bit values?

I have an enum type like this: public enum MyEnum: ulong { All = 0UL, Func1 = 1UL, Func2 = 4UL, Func3 = 8UL, Func4 = 16UL, Func5 = 32UL, Func6 = 256UL, // and so ...
0
votes
0answers
19 views

OpenCL bitwise reduction optimization

I am making a vertical counter out of 4 large OpenCl buffers. So each bit in the 4 buffers must undergo the following operation #define transition_index(ueb, leb, urb, lrb, bit) \ (((((ueb) ...
2
votes
1answer
37 views

Replicating Javascript bitwise operation in Python

I'm trying to replicate a simple bitwise Javascript operation in Python. [Javascript] > 0xA867Df55 2825379669 > 0xA867Df55 ^ 0 -1469587627 [Python] >>> 0xA867DF55 2825379669L ...
0
votes
1answer
11 views

Merging MSD and LSD

I have two 4 bit hex values A, B and I want to create an 8 bit value with A the MSD and B the LSD: This is my attempt: uint8_t X = (A << 4) & (B); I am getting a value but unsure if ...
0
votes
2answers
48 views

Jumping segments in binary

My question is, is there a way in C# with a starting bit location to find the next binary digit within a byte that has a specified value of 0 or 1 without iteration (looking for the highest ...
0
votes
3answers
31 views

Extracting certain bit from binary data

I have a binary number that looks like this: 00000000 00000000 00000011 00001101 = 781 integer value = integer name "packed" How am i able to extract each of those as separate integer values ...
0
votes
0answers
10 views

MySQL bitwise option overwrites in time

I did wonder if there is a good way to overwrite in time an option saved bitwise in MySQL and to keep track. Example (Day is bitwise of 7 bits, each day represents 1 bit, Monday is highest bit): Id ...
0
votes
1answer
29 views

Joining hex values to create a 16bit value

Im receiving three uint8 values which are the Most, Middle and Least Significant Digits of a plot value: EG: Printed in console (%c): 1 A 4 I need to pass them into a signal view UI grapher ...
0
votes
2answers
11 views

PHP, Bitwise operators and using inclusive or as a parameter for enabling options

Is there a way of defining some variables with true or false and passing them in collectively into a function as a parameter like in C++ like flags to turn sections of a function on or off using the ...
1
vote
2answers
46 views

Fast bit reversal with mirrored arithmetics

I include a C function from an article on FFT by Sergey Chernenko. This function rearranges data by performing an even-odd decomposition. But instead of using bit reversal it does so by adding 1 in a ...
0
votes
2answers
37 views

bitwise AND doesn't work on MSB

I'm implementing a bit vector by packing bits into an array of uints. The getBit(index) function does a (array[cell] & (1 << bit)) >> bit to get whether a bit has been set or not. This ...
-3
votes
4answers
99 views

C Programming - XOR Bitwise Operation

What operation does the following ‘C’ statement perform? star = star ^ 0b00100100; (A) Toggles bits 2 and 5 of the variable star. (B) Clears all bits except bits 2 and 5 of the variable star. ...
0
votes
0answers
14 views

JSUnit test 0xFFFFFFFF not working

I have a function integer, to workaround the overflow-problem: function integer(n) { return n%(0xffffffff+1); } My Test looks like this: MathTest.prototype.testInteger = function() { ...
-1
votes
2answers
35 views

bitwise OR (on array)

I need to perform bitwise OR of two arrays of dataType byte in java , how can i do so ? byte a= new byte[256]; byte b= new byte[256]; byte c;/*it shld contain information i.e bitwise OR of ...
-1
votes
1answer
38 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 ...
3
votes
3answers
68 views

How to get the bit removed from the bitwise right shift in c#

I have a int number And I have to shift it to the right a couple of times. x = 27 = 11011 x>>1= 13 = 1101 x>>2= 6 = 110 x>>3= 3 = 11 I would like to get the value bit value ...
0
votes
6answers
76 views

gcc bitwise Leftshift (<<) strange behavior

gcc bitwise Leftshift (<<) strange behavior Here is my code: #include <stdio.h> #include <string.h> void foo(int n){ printf("1<<32:%d\n", 1<<32); ...
-1
votes
2answers
57 views

Implementing if - else if using bitwise operators [closed]

Assume that the value of test is 1 or 0. Here I can implement the following if statement using bitwise operators as below. if (test) output = a; else output = b; Using bit wise operators ...
0
votes
2answers
38 views

why is this method for computing sign of an integer architecture specific

From this link here to compute the sign of an integer int v; // we want to find the sign of v int sign; // the result goes here sign = v >> (sizeof(int) * CHAR_BIT - 1); // CHAR_BIT is ...
5
votes
1answer
31 views

Generating particular bit pattern using bitwise operators

Here I want to generate a bit pattern to set n digits equal to 1 starting from position p. Digits are numbered from 0 to 31. Following is what I did. int bitPattern(int n, int p) { int hex, num1, ...
1
vote
2answers
51 views

Checking if bits set to 1

I am trying to check whether the last 2 bits in a byte variable have been set to 1. This is what I have: if ((my_byte & (1 << 0)) == 1 && (my_byte & (1 << 1)) == 1) ...
0
votes
0answers
20 views

Binary operations and analog functions in JavaScript hash_hmac

I realize the function hash_hmac() in JavaScript, I found a library: crypto-js. Do not match the hashes for equal values​​: <?php $value = "info"; $salt = "salt"; $algo = "SHA256"; ...
5
votes
11answers
171 views

Fastest way to find binary base [duplicate]

I am trying to find binary base of a number, like the floor function which rounds of number to greatest integer below it, i want to round off the number to the 1st binary base below it. For example: ...
0
votes
2answers
51 views

c++ bitwise addition , calculates the final number of representative bits

I am currently developing an utility that handles all arithmetic operations on bitsets. The bitset can auto-resize to fit any number, so it can perform addition / subtraction / division / ...
2
votes
5answers
150 views

Generate random int with specified upper-bound (0 - n) without using / or %

roommate went to an interview and got this one: Rules: permitted to use rand(); RAND_MAX = 32 767; no use of division or modulo; TODO: Write a function that takes one int parameter and returns ...
1
vote
3answers
93 views

bitwise rotate operation for arduino

I'm programming an arduino for led matrix project with shift registers i have to rotate output value (which is a byte) but when i use "<<" operator it does not rotate the value properly ...
1
vote
2answers
110 views

Bitwise operation on unsigned char

I have a sample function as below: int get_hash (unsigned char* str) { int hash = (str[3]^str[4]^str[5]) % MAX; int hashVal = arr[hash]; return hashVal; } Here array arr has size as ...
0
votes
1answer
67 views

Mask and aggregate bits

I'm trying to efficiently execute the following task: INPUT VALUE: 01101011 MASK: 00110010 MASK RESULT: --10--1- AGGREGATED: 00000101 I hope this examples explains clearly what I'm trying ...
0
votes
1answer
36 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 ...
-3
votes
2answers
51 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
114 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
84 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
55 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
39 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
56 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
25 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
76 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
1answer
82 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
101 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
2answers
92 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
67 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
23 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
92 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 2 3 4 5 26