LeviLamina
Loading...
Searching...
No Matches
HashMurmur2A.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bx {
6
7class HashMurmur2A {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<4, 4, uint> m_hash;
12 ::ll::TypedStorage<4, 4, uint> m_tail;
13 ::ll::TypedStorage<4, 4, uint> m_count;
14 ::ll::TypedStorage<4, 4, uint> m_size;
15 // NOLINTEND
16
17public:
18 // member functions
19 // NOLINTBEGIN
20 MCAPI void add(void const* _data, int _len);
21
22 MCAPI void addUnaligned(void const* _data, int _len);
23 // NOLINTEND
24};
25
26} // namespace bx
Definition HashMurmur2A.h:7