Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dunicodeobject.c864 #define BLOOM_WIDTH 128 macro
866 #define BLOOM_WIDTH 64 macro
868 #define BLOOM_WIDTH 32 macro
877 #define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
893 MASK |= (1UL << (ch & (BLOOM_WIDTH - 1))); \ in make_bloom_mask()