Find all x such that (x & (x+y)) == 0...
Read MoreJavascript Tilde & Two's complement ...
Read Morebit-wise operation unary ~ (invert)...
Read MoreEfficiently getting most and least significant bit in javascript...
Read Moreis (0.1 + 0.2) == 0.3 true or false?...
Read MoreChecking if number is even by looking at the last bit - are there any other "tricks" like ...
Read MoreHow to generate an integer that repeats like 100100100…1 in binary with time complexity O(n)?...
Read MoreHow can I test if all bits are set or all bits are not?...
Read MoreCatch and compute overflow during multiplication of two large integers...
Read MoreIn C/C++ what's the simplest way to reverse the order of bits in a byte?...
Read MoreBits counting algorithm (Brian Kernighan) in an integer time complexity...
Read MoreExtracting the first 3 bits of an uint8...
Read MoreSummation of nodes reachable starting from every node present in given DAG with restriction on numbe...
Read MoreArithmetic shift-right integers with half rounding toward zero...
Read MoreBranchless code that maps zero, negative, and positive to 0, 1, 2...
Read MoreWhat situations are there where one might want to use the bitwise XOR operator?...
Read MoreHow can I multiply and divide using only bit shifting and adding?...
Read MoreGetting the index of the leftmost active bit in an integer instantly...
Read MoreHow can I force bitwise operators to produce unsigned results?...
Read MoreFinding trailing 0s in a binary number...
Read MoreHow does this bitwise operation check for a power of 2?...
Read MoreHow to reverse a bitwise OR operation?...
Read MoreCount bits 1 on an integer as fast as GCC __builtin__popcount(int)...
Read MoreMost efficient way to set n consecutive bits to 1?...
Read More