Fix up xxhash
This commit is contained in:
parent
0888251fb1
commit
9c257dc268
@ -81,17 +81,6 @@ static void* XXH_memcpy(void* dest, const void* src, size_t size) { return memcp
|
|||||||
#define FORCE_INLINE static __always_inline
|
#define FORCE_INLINE static __always_inline
|
||||||
|
|
||||||
|
|
||||||
static U32 XXH_read32(const void* memPtr)
|
|
||||||
{
|
|
||||||
return MEM_read32(memPtr);
|
|
||||||
}
|
|
||||||
|
|
||||||
static U64 XXH_read64(const void* memPtr)
|
|
||||||
{
|
|
||||||
return MEM_read64(memPtr);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* ****************************************
|
/* ****************************************
|
||||||
* Compiler-specific Functions and Macros
|
* Compiler-specific Functions and Macros
|
||||||
******************************************/
|
******************************************/
|
||||||
|
@ -177,8 +177,8 @@ When done, free XXH state space if it was allocated dynamically.
|
|||||||
/* **************************
|
/* **************************
|
||||||
* Utils
|
* Utils
|
||||||
****************************/
|
****************************/
|
||||||
XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dst_state, const XXH32_state_t* restrict src_state);
|
XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dst_state, const XXH32_state_t* src_state);
|
||||||
XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* restrict dst_state, const XXH64_state_t* restrict src_state);
|
XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dst_state, const XXH64_state_t* src_state);
|
||||||
|
|
||||||
|
|
||||||
/* **************************
|
/* **************************
|
||||||
|
Loading…
x
Reference in New Issue
Block a user