Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dunicodeobject.c196 #define BLOOM_WIDTH 128 macro
198 #define BLOOM_WIDTH 64 macro
200 #define BLOOM_WIDTH 32 macro
209 #define BLOOM_ADD(mask, ch) ((mask |= (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
210 #define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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)))))