Calculates the number of set bits in an integer using the X86 SSE4 POPCNT instruction. POPCNT is not available on all X86 CPUs.
Reverses the order of bits in a 32-bit integer.
Reverses the order of bits in a 64-bit integer.
Scans the bits in v starting with bit 0, looking for the first set bit.
Scans the bits in v from the most significant bit to the least significant bit, looking for the first set bit.
Swaps bytes in a 4 byte uint end-to-end, i.e. byte 0 becomes byte 3, byte 1 becomes byte 2, byte 2 becomes byte 1, byte 3 becomes byte 0.
Swaps bytes in an 8 byte ulong end-to-end, i.e. byte 0 becomes byte 7, byte 1 becomes byte 6, etc. This is meant to be recognized by the compiler as an intrinsic.
Tests the bit. (No longer an intrisic - the compiler recognizes the patterns in the body.)
Tests and complements the bit.
Tests and resets (sets to 0) the bit.
Tests and sets the bit.
Swaps bytes in a 2 byte ushort.
Reads I/O port at port_address.
Writes and returns value to I/O port at port_address.
Calculates the number of set bits in an integer.
Bitwise rotate value left (rol) or right (ror) by count bit positions.
Range over bit set. Each element is the bit number that is set.
This module contains a collection of bit-level operations.