Searched refs:LOWER_MASK (Results 1 – 5 of 5) sorted by relevance
58 #define LOWER_MASK 0x7fffffffUL /* least significant r bits */ macro158 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()
128 #define LOWER_MASK 0x7fffffff /* least significant r bits */ macro463 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()
80 #define LOWER_MASK 0x7fffffffU /* least significant r bits */ macro132 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()
16 #define LOWER_MASK 0x08 macro174 return (ctype->flags & LOWER_MASK) != 0; in _PyUnicode_IsLowercase()
88 LOWER_MASK = 0x08 variable416 flags |= LOWER_MASK