Home
last modified time | relevance | path

Searched refs:BLOOM_WIDTH (Results 1 – 1 of 1) 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)))))