Searched refs:__ac_isempty (Results 1 – 2 of 2) sorted by relevance
/third_party/iowow/src/utils/ |
D | khash.h | 167 #define __ac_isempty(flag, i) ((flag[i>>4]>>((i&0xfU)<<1))&2) macro 239 …while (!__ac_isempty(h->flags, i) && (__ac_isdel(h->flags, i) || !__hash_equal(h->keys[i], key))) … 283 while (!__ac_isempty(new_flags, i)) i = (i + (++step)) & new_mask; \ 324 if (__ac_isempty(h->flags, i)) x = i; /* for speed up */ \ 327 …while (!__ac_isempty(h->flags, i) && (__ac_isdel(h->flags, i) || !__hash_equal(h->keys[i], key))) … 333 if (__ac_isempty(h->flags, i) && site != h->n_buckets) x = site; \ 338 if (__ac_isempty(h->flags, x)) { /* not present at all */ \
|
/third_party/ejdb/src/util/ |
D | khash.h | 157 #define __ac_isempty(flag, i) ((flag[i>>4]>>((i&0xfU)<<1))&2) macro 229 …while (!__ac_isempty(h->flags, i) && (__ac_isdel(h->flags, i) || !__hash_equal(h->keys[i], key))) … 273 while (!__ac_isempty(new_flags, i)) i = (i + (++step)) & new_mask; \ 314 if (__ac_isempty(h->flags, i)) x = i; /* for speed up */ \ 317 …while (!__ac_isempty(h->flags, i) && (__ac_isdel(h->flags, i) || !__hash_equal(h->keys[i], key))) … 323 if (__ac_isempty(h->flags, i) && site != h->n_buckets) x = site; \ 328 if (__ac_isempty(h->flags, x)) { /* not present at all */ \
|