Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in bit-manipulation

Computing the Parity

Bitwise (Bitshift) operations on 64-bit integers in C++

How does this code work to reverse bits in number?

c bit-manipulation reverse

Why do a lot of languages lack a logical XOR operator?

What is the difference between bit shifting and arithmetical operations?

Bitwise or (|) in function argument

c++ c bit-manipulation

Java how to parse uint8 in java?

java bit-manipulation

How to check if a particular bit is set in C#

c# bit-manipulation bit

Bit Hack - Round off to multiple of 8

c bit-manipulation

Why is 3<<1 == 6 in python? [duplicate]

Fastest method to define whether a number is a triangular number

What does `(i & (i + 1)) - 1` mean? (in Fenwick Trees)

Can storing unrelated data in the least-significant-bit of a pointer work reliably?

Fast branchless max for unsigned integers

Bitwise shift to generate all possible permutations in C [duplicate]

Implementing "logical not" using less than 5 bitwise operators

Simplify (A & B) && !(A & C)

C question: off_t (and other signed integer types) minimum and maximum values

How to efficiently read bits out of bytes?

Why does the 0x55555556 divide by 3 hack work?