Home | History | Annotate | Download | only in fio

Lines Matching full:hash

3  * No hash indexing, just a list, so only works well for < 100 files or
14 #include "hash.h"
18 uint32_t hash;
55 static struct fio_filelock *fio_hash_find(uint32_t hash)
62 if (ff->hash == hash)
69 static struct fio_filelock *fio_hash_get(uint32_t hash)
73 ff = fio_hash_find(hash);
76 ff->hash = hash;
88 uint32_t hash;
90 hash = jhash(fname, strlen(fname), 0);
93 ff = fio_hash_get(hash);
124 uint32_t hash;
126 hash = jhash(fname, strlen(fname), 0);
129 ff = fio_hash_get(hash);
139 uint32_t hash;
141 hash = jhash(fname, strlen(fname), 0);
145 ff = fio_hash_find(hash);