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

  /external/fio/lib/
bloom.h 6 struct bloom;
8 struct bloom *bloom_new(uint64_t entries);
9 void bloom_free(struct bloom *b);
10 int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords);
bloom.c 4 #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/
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");
588 if (!bloom)
595 if (bloom)
596 bloom_free(bloom);
    [all...]
  /external/fio/
Android.mk 35 lib/bloom.c lib/linux-dev-lookup.c lib/tp.c
Makefile 39 lib/tp.c lib/bloom.c
204 memalign.o lib/bloom.o t/debug.o crc/xxhash.o crc/murmur3.o \

Completed in 106 milliseconds