Searched defs:bloom (Results 1 - 2 of 2) sorted by relevance

/external/fio/lib/
H A Dbloom.c4 #include "bloom.h"
12 struct bloom { struct
65 struct bloom *bloom_new(uint64_t entries)
67 struct bloom *b;
85 void bloom_free(struct bloom *b)
91 static int __bloom_check(struct bloom *b, uint32_t *data, unsigned int nwords,
116 int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords)
/external/fio/t/
H A Ddedupe.c29 #include "../lib/bloom.h"
64 static struct bloom *bloom; variable in typeref:struct:bloom
247 if (bloom) {
252 r = bloom_set(bloom, items[i].hash, s);
455 bloom = bloom_new(bloom_entries);
530 log_err("\t-B\tUse probabilistic bloom filter\n");
588 if (!bloom)
595 if (bloom)
596 bloom_free(bloom);
[all...]

Completed in 843 milliseconds