Searched refs:bloom (Results 1 - 1 of 1) sorted by relevance

/ast/src/lib/libvcodex/Vcwindow/
H A Dvcwprefix.c65 Vcchar_t* bloom; /* Bloom filtering of unmatches */ member in struct:_pffile_s
95 ((pf)->bloom[(b1) >> 3] |= (1 << ((b1)&7)) ), \
96 ((pf)->bloom[(b2) >> 3] |= (1 << ((b2)&7)) ) )
98 (((pf)->bloom[(b1) >> 3] & (1 << ((b1)&7)) ) && \
99 ((pf)->bloom[(b2) >> 3] & (1 << ((b2)&7)) ) ) )
100 #define BLOOMTEST(pf,ky,b1,b2) ((pf)->bloom ? Bloomtest(pf,ky,b1,b2) : 1)
157 pf->bloom = srcfile ? (Vcchar_t*)(pf->tab + k) : NIL(Vcchar_t*);
195 if(pf->bloom)

Completed in 8 milliseconds