Home
last modified time | relevance | path

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

/third_party/iowow/src/utils/
Dmt19937ar.c58 #define LOWER_MASK 0x7fffffffUL /* least significant r bits */ macro
164 y = (mt[kk] & UPPER_MASK) | (mt[kk + 1] & LOWER_MASK); in genrand_int32()
168 y = (mt[kk] & UPPER_MASK) | (mt[kk + 1] & LOWER_MASK); in genrand_int32()
171 y = (mt[N - 1] & UPPER_MASK) | (mt[0] & LOWER_MASK); in genrand_int32()
/third_party/python/Modules/
D_randommodule.c80 #define LOWER_MASK 0x7fffffffU /* least significant r bits */ macro
132 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); in genrand_uint32()
136 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); in genrand_uint32()
139 y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK); in genrand_uint32()
/third_party/python/Objects/
Dunicodectype.c16 #define LOWER_MASK 0x08 macro
174 return (ctype->flags & LOWER_MASK) != 0; in _PyUnicode_IsLowercase()
/third_party/python/Tools/unicode/
Dmakeunicodedata.py88 LOWER_MASK = 0x08 variable
416 flags |= LOWER_MASK