Functions which combine numerical values by operating on the binary digits (bits) of the values rather than the numerical value as a whole.
1
vote
2answers
21 views
Left shifting with a negative shift count in Javascript
A thing which I noticed in Javascript -
a << -1
Returns 0 when a = even.
Returns -2147483648 when a = odd.
Similarly, different values are returned when -1 is changed to some other -ve ...
0
votes
0answers
16 views
Bitwise Binary operations on attribute flags in XML files
In XML files, on some attributes you can combine flag values by OR operator, example:
<item name="openingDays" value="monday|wednesday|friday"/>
assuming the flags for "monday", "tuesday", ...
3
votes
6answers
92 views
bitwise operations in c++, how to actually use it?
I understand
11001110
& 10011000
= 10001000
but I want to test it myself
so I declare unsigned char and print it out, but it just gives me blank.
unsigned char result;
result= 11001110 ...
3
votes
3answers
90 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 ...
3
votes
2answers
83 views
Why is '' ^ 9 equal to 9?
I read about bitwise JavaScript operator here.
9 (base 10) = 00000000000000000000000000001001 (base 2)
14 (base 10) = 00000000000000000000000000001110 (base 2)
...
1
vote
4answers
53 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 ...
7
votes
5answers
100 views
precedence of ~ and ++ in java
consider this code snippet
int j = 7;
System.out.println(Integer.toBinaryString(j));
j = ~j++;
System.out.println(Integer.toBinaryString(j));
prints
111
11111111111111111111111111111000
what i ...
0
votes
1answer
31 views
Sqlite bitwise NOT not working as I expect
I try to update flag in sqlite database.
I need to remove bit from my flag. Current flag vallue is 11.
In Java I simple do:
newflag = flag ^ 2;
//newflag = 9
In SQL I try:
... SET flag = flag ...
0
votes
1answer
24 views
Javascript Bitwise to Regular Operators [duplicate]
I have been recently reading this book, "Supercharged Javascript Graphics", and it is just awesome. It has some really interesting concepts and examples using html5 canvas element and other graphics. ...
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.
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
127 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
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 ...
0
votes
1answer
48 views
How to make VB .NET's AND act as &&
I was discussing some of the differences between VB .NET and C# with a co-worker today. He pointed out that && acts as a bitwise operator while VB .NET's AND doesn't always do that. To ...
19
votes
5answers
638 views
Confused by use of double logical not (!!) operator [duplicate]
I have some C++ code that makes extensive use of !!. I'm kinda baffled because as far as I know !! is not a operator on it's own but two ! after each other. So that would mean that !!foo is the same ...
1
vote
4answers
34 views
Why do these bitwise operations result in the uppercase letter?
I have the following code:
static char toUpper(char c)
{
if (c >= 'a' && c <= 'z')
return (char) (c & ~('a' - 'A'));
return c;
}
Why does this work to correctly ...
1
vote
1answer
63 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
votes
4answers
75 views
What are bitwise operations?
I'm in the middle of studying the book named Beginning Android Games. One thing that I noticed was this:
int action = event.getAction() & MotionEvent.ACTION_MASK;
int pointerIndex = ...
-1
votes
2answers
45 views
ANDing with different bit lengths
I have the following:
void calculate(unsigned long num1, unsigned long num2){
int32_t invertednum2 = ~(num2); // yields 4294967040
printf("%d\n", invertednum2); // yields 255
// ...
1
vote
3answers
84 views
Bitwise Concatenation
I have the following:
char *pointer = decimal_to_binary(192) // yields 11000000
char *pointer2 = decimal_to_binary(168) // yields 10101000
I am trying to concat them into:
1100000010101000
I was ...
-1
votes
2answers
84 views
Converting subnet mask prefix with C
I'd like to convert a prefix like /24 to 255.255.255.0 using bitwise operations.
I have tried using unsigned int like so:
unsigned int mask = -(1 << 32 - prefix);
I am thinking of ...
4
votes
3answers
64 views
Bitwise Operations in C: setting bits from left
Given an integer like 10, how could I write 10 1 bits (starting from the left) in a total of 16 bits like so:
11111111.11000000
Or given an integer like 4, it would write:
11110000.00000000
...
0
votes
3answers
104 views
How are bitwise operators being used in this code?
I was looking at PSPDFkit sample code and saw this:
NSDictionary *options = @{kPSPDFProcessorAnnotationTypes :
@(PSPDFAnnotationTypeNone & ~PSPDFAnnotationTypeLink)
...
0
votes
0answers
42 views
TSQL Bitwise Operations: How do I find out common groupings of values?
Background: I am looking at consolidating security roles for an application. There are 20 roles that can apply to one or more of five access levels (like district, county, state). Most users have ...
-5
votes
2answers
143 views
Couple of homework problems in C regarding bitwise operators [closed]
These are the last two questions on my homework. I'm sorry for posting these here, but I really want to finish these and have no idea how to do so.
/*
* leftBitCount - returns count of number of ...
1
vote
2answers
61 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 ...
2
votes
3answers
163 views
How to overload |= operator on scoped enum?
How can I overload the |= operator on a strongly typed (scoped) enum (in C++11, GCC)?
I want to test, set and clear bits on strongly typed enums. Why strongly typed? Because my books say it is good ...
3
votes
1answer
35 views
Error in performing bit-wise OR and 32 bit sign bit extension in Java
I'm having trouble understanding bit-wise OR in java. I'm reading a Java programming book named "Apress Beginning Java7" by Jeff Friesen.
And in that book at page-31 the author gave two 8 bit binary ...
4
votes
2answers
98 views
What does adding '=' do to bit operators in Python? (ie '<<=' instead of '<<')
What do the <<=and the |= operators mean Python? I guess they are bitwise operators. I know the operators | (bitwise or) and << (bit shifting), but I don't know them in combination with ...
0
votes
2answers
50 views
Type mismatch with If statement containing bitwise operators
I am new to scala but I am having the problem with the following code:
var c:Int = 0
var j:Int = 0
for( c <- 0 to 100){
for( j <- 0 to 100){
/* Check if jth bit in c is set,
if( (c ...
0
votes
1answer
15 views
Using bitwise operations in a LINQ query
Given the following enum
[Flags]
public enum Trans{
Purchase =1,
Sale=2,
All = Purchase | Sale
};
And the following class
public class Person
{
public string Name;
public Trans TransType;
}
And ...
0
votes
2answers
50 views
VBA arrays and Operators
I am trying to write a couple lines of code in VBA for excel, here is what the VB.Net version of the code looks like.
ThisVariable <<= 8
Variable.Add(ThisVariable)
How do ...
0
votes
3answers
49 views
comparing bitwise operators
gcc 4.7.2
c89
Hello,
enum message_e {
SIP_CONNECTED = 1 << 0,
CALL_ACCEPTED = 1 << 1
};
Setting the bits in different parts of my code:
channel->base.message |= ...
10
votes
6answers
216 views
Why were bitwise operations slightly faster than addition/subtraction operations on older microprocessors?
I came across this excerpt today:
On most older microprocessors, bitwise operations are slightly faster than addition and
subtraction operations and usually significantly faster than ...
0
votes
1answer
25 views
which one is fast?
I tried these operations:
(7 xor 5) and (7 - 5)
and I get same answers. I want to know which operation is fast? Can anyone explain to me?
3
votes
1answer
64 views
integer number of alternative length (not 32-bit) in javascript
The problem is as follows: I need to deal with numbers that are encoded exactly as signed integer (the MSB is sign, the value is 2's complement binary value), but they are not 32 bit. I.e. I have a ...
-3
votes
2answers
62 views
Shortening bitwise equations
Similar to how plus and minus can be shortened thusly:
$x = $x + 5;
becomes
$x += 5;
Can you do a similar thing with bitwise operators? For example when applying XOR would the following be ...
4
votes
1answer
85 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
53 views
bitwise operations on 64-bit data type (long long) in C?
Here is some code.
long long bitmap2 = 1;
printf("%d\n", bitmap2 & 1);
The output is 0, but I am expecting 1. How can I fix this? (I have tried 1LL instead of 1 and uint64_t instead of long ...
0
votes
2answers
77 views
Difference between these bitmask
I'm wondering what's the difference of the bitmask below, and it what scenario you can use then.
int a = 1;
int b = 2;
int c = 4;
int d = 8;
int letters = a | b | d;
int aviableLettersMask ...
0
votes
4answers
161 views
What exactly does “*=” mean in C programming? [closed]
I've been looking at some RobotC code, which is pretty similar to C (and I don't have enough reputation to make a new RobotC tag), and I came across the
*= operator. I've googled it quite a bit, but ...
0
votes
1answer
68 views
Best way to implement bitwise operations for n-byte integers
I want to implement an efficient library for bitwise operations on big integers. I've written the following function that overrides BTEST:
FUNCTION testb_i2b(n,i)
INTEGER(I8B), DIMENSION(0:), ...
5
votes
2answers
152 views
Is there a trivial way to get the 2's complement of an std::bitset<N>
I was using std::bitset<N> in my program and needed to find the least significant set bit and did the trivial calculation as below :
int num = 5;
int res = num & (-num);
After which the ...
-1
votes
1answer
159 views
Change XOR to XNOR
I am working with a XNOR encrypted file whose key is not known. I want to modify the xortool which is available here: https://github.com/hellman/xortool to work for XNOR encryption.
Apparently, there ...
1
vote
1answer
199 views
C - Convert char to int to perform bitwise ops on output
I'm using a function (Borrowing code from: http://www.exploringbinary.com/converting-floating-point-numbers-to-binary-strings-in-c/) to convert a float into binary; stored in a char. I need to be ...
0
votes
1answer
76 views
branchless bitwise operation
I'm looking for a branchless bitwise operation that can determine with a given mask :
Mask : 0xFF0000 Value : 0xAA0000 return : true
Mask : 0xFF0000 Value : 0xAA00AA return : false
Mask ...
1
vote
4answers
145 views
Can someone explain the & Operator in these examples?
I don't understand what's going on with this code:
if ((_value & item.Value) == item.Value)
{
item.IsSet = true;
}
In this particular example that I'm looking at, I'm seeing the following:
...
1
vote
1answer
84 views
bit operations in java, compared to c
i am trying to convert a c++ software in java, however the bit operations don't produce the same results.
overview of what i am doing:
there's an ascii file with data entries, 2 bytes long, unsigned ...
0
votes
3answers
85 views
Is it possible to overload the indexing operator[] to return bits from an integer?
I am not sure whether this is possible because as far as I know, references cannot refer to individual bits in an integer, but I am curious to know whether there is a technique that will enable the ...
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
...
