Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in bit-manipulation

Convert Byte Array to Bit Array?

c# bit-manipulation

"Isolate" specific Row/Column/Diagonal from a 64-bit number

f(int x) { return x == 0 ? 0 : 1; } in Java without conditionals

java bit-manipulation

Checking whether a number is positive or negative using bitwise operators

Is & faster than % when checking for odd numbers?

Should I bit-shift to divide by 2 in Java? [duplicate]

Find out number of bits needed to represent a positive integer in binary?

java bit-manipulation bits

How to compute the integer absolute value

What is an XOR sum?

c bit-manipulation bit xor

Bit twiddling: which bit is set?

c bit-manipulation

bitwise & doesn't work with bytes in kotlin

bit-manipulation kotlin

How to get the Nth digit of an integer with bit-wise operations?

numbers bit-manipulation

Send and receive binary data over web sockets in Javascript?

What is the efficient way to count set bits at a position or lower?

n is negative, positive or zero? return 1, 2, or 4

Why does ((unsigned char)0x80) << 24 get sign extended to 0xFFFFFFFF80000000 (64-bit)?

c bit-manipulation

Java storing two ints in a long

Reversing bits of Python integer

Why is squaring a number faster than multiplying two random numbers?

Fast divisibility tests (by 2,3,4,5,.., 16)?