summaryrefslogtreecommitdiffhomepage
path: root/include
AgeCommit message (Collapse)Author
2023-04-27removing compiler warning ++.Tyge Løvset
2023-04-26Internal.Tyge Lovset
2023-04-24Final hashing tweakTyge Løvset
2023-04-24Final hash constants tunings.Tyge Løvset
2023-04-24Fixed another cmap issueTyge Løvset
2023-04-24Set i_expandby 2 by default.Tyge Løvset
2023-04-23Tuned cmap.h and hash function.Tyge Løvset
2023-04-22Fixed a regression bug in cmap_X_contains()-Tyge Løvset
2023-04-21Householding.Tyge Løvset
2023-04-20cmap Updates to dev43 standard.Tyge Løvset
2023-04-20Minor internal cmap updates.Tyge Løvset
2023-04-19Internal refactoring in cmap. Should be easy to convert to robinhood hash ↵Tyge Løvset
from here.
2023-04-18Removed unneeded custom size type in maps and bits.h. Prepared for possible ↵Tyge Løvset
robin-hood impl. Improved sso_bench.c testing string hash - twice as fast as m.ankeln robin impl !?.
2023-04-14tuning of hash function. Adjusted benchmark balance.Tyge Løvset
2023-04-12Merge branch 'master' into modifiedrealtradam
2023-04-10Improved naming consistency: fixed rawkey - keyraw confusion (mostly internal).Tyge Lovset
2023-04-08Reverted c_arraylen(), removed c_ARRAYLEN()Tyge Lovset
2023-04-08Using "unsafe" c_ARRAYLEN(), because sizeof(shape) may be equal to sizeof ↵Tyge Lovset
pointer.
2023-04-08More docs updates, and a change in stc/extend.h.Tyge Lovset
2023-04-07More docs updating.Tyge Lovset
2023-04-07Massive documentation update/improvements.Tyge Lovset
Reduced benchmarks/plotbench repetition/sizes.
2023-04-05Internal: renamed untemplate.h to template2.hTyge Løvset
2023-04-03Split priv/template.h in two files to make mksingle.sh work.Tyge Løvset
2023-04-03Renamed c_flt_n() => c_flt_getcount(), and c_flt_count() => c_flt_counter().Tyge Lovset
2023-04-02Renamed c_flt_last(i) => c_flt_n(i) in algo/filter.hTyge Løvset
2023-04-01Update of stc/extend.hTyge Lovset
2023-03-31Added stc/extend.h: A generalized way to type-safely extend a container with ↵Tyge Lovset
new members which can be accessed from the template parameters. See examples/functor.c
2023-03-31Change in crand.Tyge Løvset
2023-03-31Small change in crand_u64(). Use - instead of ^ in result.Tyge Løvset
2023-03-30Added crand.h - Alternative API to crandom.h, which will be deprecated.Tyge Løvset
2023-03-30removed unneeded codeTyge Løvset
2023-03-29Some optimizations in hash func.Tyge Løvset
2023-03-29Removed i_less_functor, i_cmp_functor, i_eq_functor and i_hash_functor: not ↵Tyge Lovset
needed. Simplified cvec_X_eq() and cdeq_X_eq()
2023-03-28Example changes. Added crand.h possible replacement for crandom.hTyge Løvset
2023-03-27Some missing files.Tyge Løvset
2023-03-26Remove more c_with, c_autoTyge Løvset
2023-03-26development branch for 4.2Tyge Løvset
Removed uses of c_auto and c_with in documentation examples and code examples. Still using c_defer a few places. Renamed c11/fmt.h to c11/print.h. Some additions in ccommon.h, e.g. c_const_cast(T, x). Improved docs.
2023-03-23Forgot an increment.Tyge Lovset
2023-03-23Internal in filter. c_xxx_if() macros now all have an _index var that can be ↵Tyge Lovset
used in the predicate.
2023-03-22Added c_foreach_r() macro for reverse iter of cvec, cdeq, cstack.Tyge Løvset
Moved c_find_if, c_erase_if, c_eraseremove_if to algo/filter.h Internals.
2023-03-17Reuse of coroutine context requires cco_reset of state.Tyge Løvset
2023-03-13Added check for realloc failure in clist_sort().Tyge Løvset
2023-03-13Fixed bug and improved generic c_eraseremove_if().Tyge Løvset
2023-03-12Minor fix in coroutine.hTyge Løvset
2023-03-12Fix warning.Tyge Løvset
2023-03-12Replaced clist mergesort with qsort: no need for i_extern defined to include it.Tyge Løvset
2023-03-12Safer state machine in coroutine.h (internal).Tyge Løvset
Removed c_forwhile() macro. Redundant, use c_forfilter(). Removed find and eq in cspan (use general c_find_if() instead for search).
2023-03-11added a varg param variant of cstr_from_fmtrealtradam
2023-03-10Added short names by default to c11/fmt.h print, println and printd.Tyge Løvset
c_forwhile() now takes container not start iter: may be removed! Cleanup in filter.h
2023-03-10Rename cco_alive() => cco_suspended(). Replaced cco_done() with cco_alive().Tyge Lovset