Tagged Questions
The bitwise-and tag has no wiki summary.
5
votes
4answers
189 views
“Bitwise And” and Left-Padding in C++
I have a macro that looks something like this:
Foo(x) ((x - '!') & 070)
If I call the following code:
Foo('1') => 16
However, if I call the following code:
(('1' - '!') & 70) => 0
...
5
votes
3answers
617 views
What does the bitwise code “$n & ($n - 1)” do?
What does this code mean and what are other ways accomplish the same without using bit shifting?
if ($n & ($n - 1))
2
votes
2answers
110 views
Help with bitwise operations
I want to doublecheck some of my logic against a 3rd party function that I am using and I'm not sure if I've got the bitwise logic figured out correctly or not. Can someone give me a range of values ...
2
votes
4answers
163 views
What does the bitwise AND operator & do?
Please help to solve this problem and explain the logic.
I don't know how the & operator is working here.
void main() {
int a = -1;
static int count;
while (a) {
count++;
a ...
2
votes
1answer
261 views
Relocation overflow when performing bitwise AND (SPARC Assembly)?
I am trying to perform a bitwise AND on a register, as a bitmask to remove the most significant bit (which happens to be bit 16 when counting from 0). However, when I try to compile my code using gcc, ...
2
votes
7answers
394 views
Bitwise AND on 32bit Integer
How do you perform a BitWise AND on 2 32 bit integers in C#?
Related:
Most common C# bitwise operations
1
vote
1answer
79 views
How can I do to find in xml whit bitwise-and with xpath and java?
I have this sample xml.
Each row has an id field, it has values as bits.
And I want to find in this file with bitwise-and operator but I don't know if this is possible.
I read about the operator ...
1
vote
5answers
299 views
Mod of power 2 on bitwise operators?
1) How does mod of power of 2 works on only lower order bits of a binary number (1011000111011010) ?
2) What is this number mod 2 to power 0, 2 to power 4 ?
3) What does power of 2 has to do with the ...
1
vote
3answers
167 views
Bitwise operation Java AND multiple booleans
this is my problem. I have three booleans which
are options I can have. I can have multiple
combinations with the three options:
i.e. no options (all false)
option 1 only
option 1 and option 2
...
1
vote
1answer
114 views
How to find the 32-bit of a number
Can I ask how to find the 32-bit version of a number as I want to work around with numbers with the bitwise AND operator in JavaScript. It stated that the numbers perform bitwise operations in 32bit ...
0
votes
3answers
44 views
enum flag checking flag always returning true
I must be doing something very stupid but I can't see what. In a simple console app I have;
[Flags]
public enum ConsoleStates : byte
{
TopLevel,
All,
MainMenu,
SingleLeagueSelected,
...
0
votes
2answers
64 views
Int to boolean array python
If I have a char d and a char k, how do I turn each into a bit array (such as True-False-True-True-True-False-False-True) and then combine the arrays into a single array by AND-ing each bit (and then ...
0
votes
1answer
90 views
why java/android allows bitwise & between a boolean variable and a String
I am allowed to do a bitwise & between a boolean variable and a String.
There is no compilation error!
What would the result? How does it work.
As per my understanding, it shall not allow the ...
0
votes
2answers
278 views
how to mask byte value in java
My problem is some like this.
I have some calculation in byte in Java. In some calculation I get my desired result "2a" in byte value but in some calculation I get "ffffff9a" in byte value. I just ...
0
votes
4answers
88 views
what this “if(k.c[3] & c)” part of code doing?
#include<stdio.h>
#include<iostream.h>
main()
{
unsigned char c,i;
union temp
{
float f;
char c[4];
} k;
cin>>k.f;
c=128;
for(i=0;i<8;i++)
{
if(k.c[3] ...
0
votes
1answer
73 views
Is there a good alternative to bitwise comparison because there are too many options?
This is a problem I am trying to solve in Microsoft SQL server 2005.
I have a problem I am trying to solve where I have a list of records in table A- we'll call them plans. A user may be associated ...
0
votes
1answer
76 views
objC bitwise add
Where
val = 3325
val &= 65535;
[rtnData appendData:[[NSString stringWithFormat:@"%x", val] dataUsingEncoding:NSUTF8StringEncoding]];
I am expecting <30434644> 0CFD
but getting ...
0
votes
0answers
96 views
In bitwise collision detection (bitwise AND), how do you test (only) the overlapping area?
In this post, paxdiablo's answer explains creating bitmasks of images and using them for collision detection through a bitwise AND.
Assuming that we have detected the collision rectangle, how do we ...
0
votes
6answers
155 views
XOR from only OR and AND
How do you do the XOR bitwise operation if you only have available the AND and the OR operations?
0
votes
3answers
137 views
Bitwise operation error?
I'm developping a site for fun and I'm trying to implement a directory access control based on bitwise operators.
I've defined GUEST = 1, GROUP1 = 15 and GROUP2 = 23
If I compare
echo (23 & ...
0
votes
2answers
275 views
java help bitwise operations
System.out.println(
s + ", long: " + l + ", binary: ");
System.out.print(" ");
for(int i = 63; i >= 0; i--)
if(((1L << i) & l) != 0)
System.out.print("1");
else
...
0
votes
6answers
174 views
How might I set the bottom 3 bytes of a 4-byte long while leaving the top byte intact?
Relevant code is this:
typedef unsigned long int chunk_head;
typedef struct malloc_chunk
{
// Contains the size of the data in the chunk and the flag byte.
chunk_head head;
// ...