Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Sse42.cs
Go to the documentation of this file.
2
4
5[Intrinsic]
6[CLSCompliant(false)]
7public abstract class Sse42 : Sse41
8{
9 [Intrinsic]
10 public new abstract class X64 : Sse41.X64
11 {
12 public new static bool IsSupported => IsSupported;
13
14 public static ulong Crc32(ulong crc, ulong data)
15 {
16 return Crc32(crc, data);
17 }
18 }
19
20 public new static bool IsSupported => IsSupported;
21
23 {
24 return CompareGreaterThan(left, right);
25 }
26
27 public static uint Crc32(uint crc, byte data)
28 {
29 return Crc32(crc, data);
30 }
31
32 public static uint Crc32(uint crc, ushort data)
33 {
34 return Crc32(crc, data);
35 }
36
37 public static uint Crc32(uint crc, uint data)
38 {
39 return Crc32(crc, data);
40 }
41}
static ulong Crc32(ulong crc, ulong data)
Definition Sse42.cs:14
static uint Crc32(uint crc, byte data)
Definition Sse42.cs:27
static Vector128< long > CompareGreaterThan(Vector128< long > left, Vector128< long > right)
Definition Sse42.cs:22
static uint Crc32(uint crc, uint data)
Definition Sse42.cs:37
static uint Crc32(uint crc, ushort data)
Definition Sse42.cs:32