Method crc32_u64
crc32_u64(UInt64, Int64)
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 | 
|---|---|---|
| UInt64 | crc_ul | Initial value  | 
| Int64 | v | Signed 64-bit integer  | 
Returns
| Type | Description | 
|---|---|
| UInt64 | Result  | 
crc32_u64(UInt64, UInt64)
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 | 
|---|---|---|
| UInt64 | crc_ul | Initial value  | 
| UInt64 | v | Unsigned 64-bit integer  | 
Returns
| Type | Description | 
|---|---|
| UInt64 | Result  |