Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in bit-manipulation

Converting Int to Float or Float to Int using Bitwise operations (software floating point)

Writing 'bits' to C++ file streams

Using a bitwise & inside an if statement

How do I get the "lost" bit from a bit shift?

Is a bit field any more efficient (computationally) than masking bits and extracting the data by hand?

c++ c bit-manipulation

How do computers find modulus?

How can I combine 4 bytes into a 32 bit unsigned integer?

c# 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?