The opaque CBMHashTable struct holds the Verstable instance + a * count cache (Verstable's _size traversal is O(buckets) so we keep * our own atomic-free counter). */
| 38 | * count cache (Verstable's _size traversal is O(buckets) so we keep |
| 39 | * our own atomic-free counter). */ |
| 40 | struct CBMHashTable { |
| 41 | cbm_vt vt; |
| 42 | }; |
| 43 | |
| 44 | CBMHashTable *cbm_ht_create(uint32_t initial_capacity) { |
| 45 | CBMHashTable *ht = (CBMHashTable *)calloc(CBM_ALLOC_ONE, sizeof(*ht)); |
nothing calls this directly
no outgoing calls
no test coverage detected