LeviLamina
Loading...
Searching...
No Matches
HashCrc32.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bx {
6
7class HashCrc32 {
8public:
9 // HashCrc32 inner types define
10 enum class Enum : int {
11 Ieee = 0,
12 Castagnoli = 1,
13 Koopman = 2,
14 Count = 3,
15 };
16
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, uint const*> m_table;
21 ::ll::TypedStorage<4, 4, uint> m_hash;
22 // NOLINTEND
23};
24
25} // namespace bx
Definition HashCrc32.h:7