clang 20.0.0git
|
Go to the source code of this file.
Macros | |
#define | __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("crc32"))) |
Functions | |
static __inline__ unsigned int __DEFAULT_FN_ATTRS | _mm_crc32_u8 (unsigned int __C, unsigned char __D) |
Adds the unsigned integer operand to the CRC-32C checksum of the unsigned char operand. | |
static __inline__ unsigned int __DEFAULT_FN_ATTRS | _mm_crc32_u16 (unsigned int __C, unsigned short __D) |
Adds the unsigned integer operand to the CRC-32C checksum of the unsigned short operand. | |
static __inline__ unsigned int __DEFAULT_FN_ATTRS | _mm_crc32_u32 (unsigned int __C, unsigned int __D) |
Adds the first unsigned integer operand to the CRC-32C checksum of the second unsigned integer operand. | |
#define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("crc32"))) |
Definition at line 13 of file crc32intrin.h.
|
static |
Adds the unsigned integer operand to the CRC-32C checksum of the unsigned short operand.
This intrinsic corresponds to the CRC32W
instruction.
__C | An unsigned integer operand to add to the CRC-32C checksum of operand __D. |
__D | An unsigned 16-bit integer operand used to compute the CRC-32C checksum. |
Definition at line 51 of file crc32intrin.h.
References __D.
|
static |
Adds the first unsigned integer operand to the CRC-32C checksum of the second unsigned integer operand.
This intrinsic corresponds to the CRC32L
instruction.
__C | An unsigned integer operand to add to the CRC-32C checksum of operand __D. |
__D | An unsigned 32-bit integer operand used to compute the CRC-32C checksum. |
Definition at line 71 of file crc32intrin.h.
References __D.
|
static |
Adds the unsigned integer operand to the CRC-32C checksum of the unsigned char operand.
This intrinsic corresponds to the CRC32B
instruction.
__C | An unsigned integer operand to add to the CRC-32C checksum of operand __D. |
__D | An unsigned 8-bit integer operand used to compute the CRC-32C checksum. |
Definition at line 31 of file crc32intrin.h.
References __D.