summaryrefslogtreecommitdiffstats
path: root/src/hash.c
AgeCommit message (Collapse)AuthorFilesLines
2022-08-19Avoid mixing signed and unsigned integersDavid Robillard1-1/+1
2022-06-28Use uppercase integer literal suffixesDavid Robillard1-14/+14
I give in.
2022-01-14Fix hash insertion tombstone replacement caseDavid Robillard1-0/+1
2021-10-27Remove unnecessary includeDavid Robillard1-1/+0
2021-10-27Improve hash table performance slightlyDavid Robillard1-6/+9
2021-09-14Make ZixAllocator a single flat structDavid Robillard1-12/+12
I can never decide between these two patterns for polymorphic objects in C, but this one seems more appropriate here since it's more conducive to inheritance.
2021-09-13Correctly handle hash table reallocation failuresDavid Robillard1-8/+25
2021-09-10Adopt REUSE machine-readable licensing standardDavid Robillard1-15/+2
2021-09-10Add custom allocator supportDavid Robillard1-18/+24
2021-09-10Add nullability annotationsDavid Robillard1-0/+35
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-10Rewrite ZixHash as a flat table with open addressingDavid Robillard1-145/+258
2021-06-30Fix hash size after removing elementsDavid Robillard1-1/+1
2020-12-31Update copyright headersDavid Robillard1-1/+1
2020-12-31Separate source from headersDavid Robillard1-0/+230
2012-08-10Minimal space overhead inline value hash table.David Robillard1-226/+0
Add ZixChunk. Add SSE 4.2 accelerated digest (with fallback) in zix/digest.h. Make library optionally header-only (define ZIX_INLINE). git-svn-id: http://svn.drobilla.net/zix/trunk@76 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
2012-01-31Windows/Visual C++ portability.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/zix/trunk@51 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
2011-09-28Add ZixHashDavid Robillard1-0/+226
git-svn-id: http://svn.drobilla.net/zix/trunk@39 df6676b4-ccc9-40e5-b5d6-7c4628a128e3