Method crc32_u64
crc32_u64(ulong, long)
Starting with the initial value in crc, accumulates a CRC32 value for unsigned 64-bit integer v, and stores the result in dst.
Declaration
[Obsolete("Use the ulong version of this intrinsic instead.")]
public static ulong crc32_u64(ulong crc_ul, long v)
Parameters
| Type | Name | Description |
|---|---|---|
| ulong | crc_ul | Initial value |
| long | v | Signed 64-bit integer |
Returns
| Type | Description |
|---|---|
| ulong | Result |
crc32_u64(ulong, ulong)
Starting with the initial value in crc, accumulates a CRC32 value for unsigned 64-bit integer v, and stores the result in dst.
Declaration
public static ulong crc32_u64(ulong crc_ul, ulong v)
Parameters
| Type | Name | Description |
|---|---|---|
| ulong | crc_ul | Initial value |
| ulong | v | Unsigned 64-bit integer |
Returns
| Type | Description |
|---|---|
| ulong | Result |