MCPcopy Create free account
hub / github.com/1a1a11a/libCacheSim / bloom_add

Function bloom_add

libCacheSim/dataStructure/bloom.c:127–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125}
126
127int bloom_add(struct bloom *bloom, const void *buffer, int len) {
128 return bloom_check_add(bloom, buffer, len, 1);
129}
130
131void bloom_print(struct bloom *bloom) {
132 printf("bloom at %p\n", (void *)bloom);

Callers

nothing calls this directly

Calls 1

bloom_check_addFunction · 0.85

Tested by

no test coverage detected