aboutsummaryrefslogtreecommitdiff
path: root/core/hash/xxhash/xxhash_64.odin
Commit message (Collapse)AuthorAgeFilesLines
* Change Odin's LICENSE to zlib from BSD 3-clausegingerBill2025-10-281-1/+1
| | | | This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form.
* Render examples.Jeroen van Rijn2025-10-101-2/+2
|
* core: improve package doc comments for the documentation generatorLaytan Laats2024-09-031-0/+1
|
* Fix `-vet-tabs` issuesgingerBill2024-08-241-9/+9
|
* fix `@(optimization_mode)` usage in builtin collectionsLaytan Laats2024-07-081-8/+8
|
* Replace `core:*` to `base:*` where appropriategingerBill2024-01-281-1/+1
|
* [xxhash] Add tests for large inputsJeroen van Rijn2022-05-021-0/+1
| | | | | | | | | | | | | | Test XXH32, XXH64, XXH3-64 and XXH3-128 for large inputs, with both all-at-once and streaming APIs. XXH32_create_state and XXH64_create_state now implicitly call their "reset state" variants to simplify the streaming API to 3 steps: - create state / defer destroy - update - digest (finalize) These are tested with an array of 1, 2, 4, 8 and 16 megabytes worth of zeroes. All return the same hashes as do both the one-shot version, as well as that of the official xxhsum tool. 3778/3778 tests successful.
* Finish xxHash implementation.Jeroen van Rijn2021-09-151-5/+5
|
* xxhash: Initial implementations.Jeroen van Rijn2021-09-091-0/+294