Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-25 | Constrain benchmark parameters to reasonable limits | David Robillard | 1 | -2/+10 | |
2022-11-25 | Avoid volatile side-effect within assert | David Robillard | 1 | -3/+11 | |
2022-10-21 | Split up common header | David Robillard | 2 | -2/+2 | |
2022-10-20 | Fix mismatched function types | David Robillard | 1 | -1/+1 | |
2022-10-18 | Use 0BSD for trivial "public domain intent" things | David Robillard | 1 | -1/+1 | |
2022-10-14 | Simplify clang-tidy configuration | David Robillard | 1 | -8/+1 | |
2022-07-13 | Suppress new warnings in clang and clang-tidy 14 | David Robillard | 1 | -0/+2 | |
2022-06-28 | Simplify clang-tidy configuration | David Robillard | 1 | -1/+0 | |
2022-06-28 | Use uppercase integer literal suffixes | David Robillard | 3 | -9/+8 | |
I give in. | |||||
2022-06-28 | Simplify dep5 file by adding license headers where possible | David Robillard | 1 | -0/+3 | |
2022-06-28 | Clean up build configuration | David Robillard | 3 | -6/+2 | |
2022-06-28 | Remove redundant includes | David Robillard | 1 | -1/+0 | |
This is implicitly included by <inttypes.h>. | |||||
2021-12-17 | Reduce benchmark code complexity | David Robillard | 1 | -38/+50 | |
2021-12-17 | Suppress new warnings in clang-tidy 13 | David Robillard | 1 | -1/+2 | |
2021-12-17 | Fix memory leaks in dictionary benchmark | David Robillard | 1 | -0/+9 | |
2021-10-27 | Gracefully handle realloc failure in benchmark | David Robillard | 1 | -2/+16 | |
Not really a relevant case here, but it resolves issues found by cppcheck. | |||||
2021-10-27 | Fix whitespace | David Robillard | 1 | -1/+1 | |
2021-09-18 | Fix warnings in release builds on MacOS | David Robillard | 1 | -2/+7 | |
Why only MacOS? Good question! | |||||
2021-09-18 | Simplify benchmark error handling by using assertions | David Robillard | 1 | -31/+11 | |
These are things that should really never happen, especially if the tests pass. | |||||
2021-09-18 | Simplify benchmark main function | David Robillard | 1 | -12/+17 | |
2021-09-10 | Adopt REUSE machine-readable licensing standard | David Robillard | 4 | -60/+8 | |
2021-09-10 | Add custom allocator support | David Robillard | 2 | -4/+6 | |
2021-09-10 | Add nullability annotations | David Robillard | 1 | -2/+3 | |
This allows clang to issue warnings at compile time when null is passed to a non-null parameter. For public entry points, also add assertions to catch such issues when the compiler does not support this. | |||||
2021-09-10 | Move attribute definitions to a separate header | David Robillard | 2 | -0/+2 | |
2021-09-10 | Rewrite ZixHash as a flat table with open addressing | David Robillard | 1 | -39/+43 | |
2021-09-10 | Replace CRC32 digest with more modern and appropriate algorithms | David Robillard | 1 | -1/+1 | |
This makes the hassle of platform-specific code go away, and instead uses portable implementations of relatively standard modern hash algorithms. CRC32 is not great as a hash function anyway, though it is very fast when hardware accelerated. | |||||
2021-09-10 | Add a user handle to destroy callback | David Robillard | 1 | -2/+2 | |
2021-09-10 | Allow ZixBTreeIter to be allocated on the stack | David Robillard | 1 | -6/+5 | |
2021-09-10 | Remove destroy field of BTree and add zix_btree_clear() | David Robillard | 1 | -2/+2 | |
If this is used, it is only when clearing or freeing a tree. Allowing it to be given as a parameter directly there is clearer and avoids bloating the tree itself with information that isn't needed. | |||||
2021-09-10 | Suppress new warnings in clang-tidy 12 | David Robillard | 1 | -0/+3 | |
2021-09-10 | Fix conversion warnings | David Robillard | 2 | -23/+26 | |
2021-07-17 | Remove ZixSortedArray | David Robillard | 1 | -105/+0 | |
2021-07-17 | Avoid allegedly "suspicious" string comparisons | David Robillard | 2 | -3/+2 | |
I guess these are suspicious if you've never seen C before? | |||||
2021-07-17 | Avoid use of rand() | David Robillard | 3 | -24/+14 | |
2021-07-17 | Avoid use of atoi() and atol() | David Robillard | 2 | -3/+2 | |
2020-12-31 | Fix MinGW build | David Robillard | 1 | -0/+1 | |
2020-12-31 | Update copyright headers | David Robillard | 3 | -3/+3 | |
2020-12-31 | Remove ZixChunk | David Robillard | 1 | -1/+19 | |
2020-12-31 | Disable glib warnings in the code | David Robillard | 3 | -0/+48 | |
Though annoying, this avoids relying on special compiler flags to suppress them. | |||||
2020-12-31 | Initialize all variables | David Robillard | 3 | -4/+5 | |
2020-12-31 | Add separate clang-tidy configuration for benchmarks | David Robillard | 1 | -0/+22 | |
2020-12-31 | Fix includes in benchmark utilities | David Robillard | 1 | -9/+15 | |
2020-12-31 | Fix signed operand to bitwise operation | David Robillard | 1 | -1/+1 | |
2020-12-31 | Fix unused value warning | David Robillard | 1 | -2/+4 | |
2020-12-31 | Format all code with clang-format | David Robillard | 3 | -447/+463 | |
2020-12-31 | Avoid "else" after "return" | David Robillard | 1 | -6/+10 | |
2020-12-31 | Remove unused esoteric data structures | David Robillard | 1 | -88/+2 | |
2020-08-13 | Move benchmarks to a separate directory | David Robillard | 3 | -0/+713 | |