Home
last modified time | relevance | path

Searched refs:BLOOM_WIDTH (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dunicodeobject.c209 #define BLOOM_WIDTH 128 macro
211 #define BLOOM_WIDTH 64 macro
213 #define BLOOM_WIDTH 32 macro
222 #define BLOOM_ADD(mask, ch) ((mask |= (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
223 #define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
/external/python/cpython3/Objects/
Dunicodeobject.c868 #define BLOOM_WIDTH 128 macro
870 #define BLOOM_WIDTH 64 macro
872 #define BLOOM_WIDTH 32 macro
881 #define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
897 MASK |= (1UL << (ch & (BLOOM_WIDTH - 1))); \ in make_bloom_mask()