Searched refs:__ac_isempty (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/libucl/klib/ |
H A D | khash.h | 165 #define __ac_isempty(flag, i) ((flag[i>>4]>>((i&0xfU)<<1))&2) macro 237 …while (!__ac_isempty(h->flags, i) && (__ac_isdel(h->flags, i) || !__hash_equal(h->keys[i], key))) … 281 while (!__ac_isempty(new_flags, i)) i = (i + (++step)) & new_mask; \ 322 if (__ac_isempty(h->flags, i)) x = i; /* for speed up */ \ 325 …while (!__ac_isempty(h->flags, i) && (__ac_isdel(h->flags, i) || !__hash_equal(h->keys[i], key))) … 331 if (__ac_isempty(h->flags, i) && site != h->n_buckets) x = site; \ 336 if (__ac_isempty(h->flags, x)) { /* not present at all */ \
|