HomeSort by relevance Sort by last modified time
    Searched defs:bloom (Results 1 - 2 of 2) sorted by null

  /external/fio/lib/
bloom.c 4 #include "bloom.h"
12 struct bloom { struct
63 struct bloom *bloom_new(uint64_t entries)
65 struct bloom *b;
83 void bloom_free(struct bloom *b)
89 static bool __bloom_check(struct bloom *b, const void *data, unsigned int len,
116 bool bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords)
121 bool bloom_string(struct bloom *b, const char *data, unsigned int len,
  /external/fio/t/
dedupe.c 29 #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");
589 if (!bloom)
596 if (bloom)
597 bloom_free(bloom);
    [all...]

Completed in 67 milliseconds