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). */
| 53 | * count cache (Verstable's _size traversal is O(buckets) so we keep |
| 54 | * our own atomic-free counter). */ |
| 55 | struct CBMHashTable { |
| 56 | cbm_vt vt; |
| 57 | }; |
| 58 | |
| 59 | CBMHashTable *cbm_ht_create(uint32_t initial_capacity) { |
| 60 | return cbm_ht_create_in(CBM_MEM_CLASS_HASH_TABLE, initial_capacity); |
nothing calls this directly
no outgoing calls
no test coverage detected