Files
Paul Lipscomb 6f66a5db64 Move feedback stutter bug report to android folder
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-07-30 19:14:00 -05:00

17 lines
350 B
C

#ifndef _WDL_FNV64_H_
#define _WDL_FNV64_H_
#include "wdltypes.h"
#define WDL_FNV64_IV WDL_UINT64_CONST(0xCBF29CE484222325)
static WDL_STATICFUNC_UNUSED WDL_UINT64 WDL_FNV64(WDL_UINT64 h, const unsigned char* data, int sz)
{
for (int i=0; i < sz; ++i)
{
h *= WDL_UINT64_CONST(0x00000100000001B3);
h ^= data[i];
}
return h;
}
#endif