Home
last modified time | relevance | path

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

/third_party/iowow/src/utils/
Dmt19937ar.c58 #define LOWER_MASK 0x7fffffffUL /* least significant r bits */ macro
158 y = (mt[kk] & UPPER_MASK) | (mt[kk + 1] & LOWER_MASK); in genrand_int32()
162 y = (mt[kk] & UPPER_MASK) | (mt[kk + 1] & LOWER_MASK); in genrand_int32()
165 y = (mt[N - 1] & UPPER_MASK) | (mt[0] & LOWER_MASK); in genrand_int32()
/third_party/glib/glib/
Dgrand.c128 #define LOWER_MASK 0x7fffffff /* least significant r bits */ macro
463 y = (rand->mt[kk]&UPPER_MASK)|(rand->mt[kk+1]&LOWER_MASK); in g_rand_int()
467 y = (rand->mt[kk]&UPPER_MASK)|(rand->mt[kk+1]&LOWER_MASK); in g_rand_int()
470 y = (rand->mt[N-1]&UPPER_MASK)|(rand->mt[0]&LOWER_MASK); in g_rand_int()
/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