Search code examples
What is the fastest way to calculate the number of bits needed to store a number...


c++bit-manipulationbit

Read More
How do the left shifting operator preserve sign?...


javabit-manipulationbitbit-shift

Read More
How to convert bool[] into byte[]?...


c#bit-manipulationdata-conversionbit-packing

Read More
Enum.HasFlag vs. Bitwise AND Operator Check...


c#performanceoptimizationenumsbit-manipulation

Read More
Count bits 1 on an integer as fast as GCC __builtin__popcount(int)...


cbit-manipulationbuilt-in

Read More
Golang - convert [8]bool to byte...


gobit-manipulationbitwise-operatorsbit-packing

Read More
Why does the bit shift expression `1 << 63` not evaluate to 2↑63 even when I cast it to `long`...


javabit-manipulationbit-shift

Read More
How to perform an unsigned right shift in Ruby?...


javarubybit-manipulationunsigned

Read More
I have a collection of bit flags. How to decompose a combined integer into its constituent set of fl...


javascriptbit-manipulation

Read More
How to store the set of currently pressed keys in a bit mask?...


javascriptbit-manipulationbitwise-operators

Read More
How do bitwise operators work on non-numeric operands?...


javascriptoperatorsbit-manipulation

Read More
Why does bitwise NOT of 1 equal −2 instead of 0?...


javascriptbit-manipulation

Read More
What are 0xaa and 0x55 doing?...


javapythonoperatorsbit-manipulation

Read More
Counting the number of leading zeros in a 128-bit integer...


c++gccbit-manipulationsse

Read More
Implement division with bit-wise operator...


bit-manipulationbit

Read More
Mod of power 2 on bitwise operators?...


cmathbit-manipulationbitwise-operatorsbitwise-and

Read More
What's the quickest way to compute log2 of an integer in C#?...


c#algorithmmathbit-manipulation

Read More
Is there a faster algorithm for max(ctz(x), ctz(y))?...


c++algorithmrustbit-manipulationmicro-optimization

Read More
Didn't understand this code to find rightmost set bit...


arraysdata-structuresbit-manipulation

Read More
Understanding this bit mask method...


bitmapbit-manipulation

Read More
Compute fast log base 2 ceiling...


coptimizationmath64-bitbit-manipulation

Read More
What does this sign exactly mean? |=...


javaandroidbit-manipulationflags

Read More
Are the shift operators (<<, >>) arithmetic or logical in C?...


cbinarybit-manipulationbit-shift

Read More
Understanding PHP & (ampersand, bitwise and) operator...


phpoperatorsbit-manipulationbitwise-operators

Read More
How do you split a hex string into bytes?...


language-agnosticnumbershexbytebit-manipulation

Read More
Catch and compute overflow during multiplication of two large integers...


cintegerbit-manipulationmultiplicationinteger-overflow

Read More
Finding trailing 0s in a binary number...


cbinarybit-manipulation

Read More
Is there a formula to find the numbers of bits for either exponent or significand in a floating poin...


c++cfloating-pointbit-manipulation

Read More
Splitting a binary value in bitfields for it's components to allow access and manipulation...


cdoublebit-manipulationieee-754mantissa

Read More
Equivalent of PEXT instruction on ARM...


assemblyx86armbit-manipulationarm64

Read More
BackNext