mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
42 lines
840 B
Plaintext
42 lines
840 B
Plaintext
// Copyright (c) 2021 Christoffer Lerno. All rights reserved.
|
|
// Use of this source code is governed by the MIT license
|
|
// a copy of which can be found in the LICENSE_STDLIB file.
|
|
module std::hash::fnv64a;
|
|
|
|
typedef Fnv64a = ulong;
|
|
|
|
const Fnv64a FNV64A_START @private = (Fnv64a)0xcbf29ce484222325;
|
|
const Fnv64a FNV64A_MUL @private = (Fnv64a)0x00000100000001b3;
|
|
|
|
macro Fnv64a update(Fnv64a h, char x) @nodiscard @private => (h ^ (Fnv64a)x) * FNV64A_MUL;
|
|
|
|
fn void Fnv64a.init(&self)
|
|
{
|
|
*self = FNV64A_START;
|
|
}
|
|
|
|
fn void Fnv64a.update(&self, char[] data)
|
|
{
|
|
Fnv64a h = *self;
|
|
foreach (char x : data)
|
|
{
|
|
h = update(h, x);
|
|
}
|
|
*self = h;
|
|
}
|
|
|
|
macro void Fnv64a.update_char(&self, char c)
|
|
{
|
|
*self = update(*self, c);
|
|
}
|
|
|
|
fn ulong hash(char[] data)
|
|
{
|
|
Fnv64a h = FNV64A_START;
|
|
foreach (char x : data)
|
|
{
|
|
h = update(h, x);
|
|
}
|
|
return (ulong)h;
|
|
}
|