| author | |
| committer | |
| log | c7d65fa3685a5f48cfedaa7a1adf758e1dc6d219 |
| tree | 6fbdaaf0ed4d5704e4d02eb5c587bfaf37da5166 |
| parent | 90a877f462fce8bee69ad366aac66805a7c00571 |
1 files changed, 10 insertions(+), 0 deletions(-)
lib/std/hash/benchmark.zig+10| ... | @@ -38,6 +38,16 @@ const hashes = [_]Hash{ | ... | @@ -38,6 +38,16 @@ const hashes = [_]Hash{ |
| 38 | .name = "wyhash", | 38 | .name = "wyhash", |
| 39 | .init_u64 = 0, | 39 | .init_u64 = 0, |
| 40 | }, | 40 | }, |
| 41 | Hash{ | ||
| 42 | .ty = hash.XxHash64, | ||
| 43 | .name = "xxhash64", | ||
| 44 | .init_u64 = 0, | ||
| 45 | }, | ||
| 46 | Hash{ | ||
| 47 | .ty = hash.XxHash32, | ||
| 48 | .name = "xxhash32", | ||
| 49 | .init_u64 = 0, | ||
| 50 | }, | ||
| 41 | Hash{ | 51 | Hash{ |
| 42 | .ty = hash.Fnv1a_64, | 52 | .ty = hash.Fnv1a_64, |
| 43 | .name = "fnv1a", | 53 | .name = "fnv1a", |