Lines Matching full:bits
19 Shifts a 64-bit integer left between 0 and 63 bits. The low bits
22 This function shifts the 64-bit value Operand to the left by Count bits. The
23 low Count bits are set to zero. The shifted value is returned.
26 @param Count The number of bits to shift left.
42 Shifts a 64-bit integer right between 0 and 63 bits. This high bits
45 This function shifts the 64-bit value Operand to the right by Count bits. The
46 high Count bits are set to zero. The shifted value is returned.
49 @param Count The number of bits to shift right.
65 Shifts a 64-bit integer right between 0 and 63 bits. The high bits
68 This function shifts the 64-bit value Operand to the right by Count bits. The
69 high Count bits are set to bit 63 of Operand. The shifted value is returned.
72 @param Count The number of bits to shift right.
106 Rotates a 64-bit integer left between 0 and 63 bits, filling
107 the low bits with the high bits that were rotated.
109 This function rotates the 64-bit value Operand to the left by Count bits. The
110 low Count bits are fill with the high Count bits of Operand. The rotated
114 @param Count The number of bits to rotate left.
130 Rotates a 64-bit integer right between 0 and 63 bits, filling
131 the high bits with the high low bits that were rotated.
133 This function rotates the 64-bit value Operand to the right by Count bits.
134 The high Count bits are fill with the low Count bits of Operand. The rotated
138 @param Count The number of bits to rotate right.