| 128 | static_assert(BX_COUNTOF(s_crcTable) == HashCrc32::Count); |
| 129 | |
| 130 | void HashCrc32::begin(Enum _type) |
| 131 | { |
| 132 | m_hash = UINT32_MAX; |
| 133 | m_table = s_crcTable[_type]; |
| 134 | } |
| 135 | |
| 136 | void HashCrc32::add(const void* _data, int32_t _len) |
| 137 | { |
no outgoing calls
no test coverage detected