Home
last modified time | relevance | path

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

/external/rust/crates/rand/src/distributions/
Dutils.rs75 const LOWER_MASK: $ty = !0 >> $half; constant
76 let mut low = (self & LOWER_MASK).wrapping_mul(b & LOWER_MASK);
78 low &= LOWER_MASK;
79 t += (self >> $half).wrapping_mul(b & LOWER_MASK);
80 low += (t & LOWER_MASK) << $half;
83 low &= LOWER_MASK;
84 t += (b >> $half).wrapping_mul(self & LOWER_MASK);
85 low += (t & LOWER_MASK) << $half;
103 const LOWER_MASK: $scalar = !0 >> $half; constant
104 let mut low = (self & LOWER_MASK) * (b & LOWER_MASK);
[all …]
/external/OpenCL-CTS/test_common/harness/
Dmt19937.cpp62 #define LOWER_MASK (cl_uint)0x7fffffffUL /* least significant r bits */ macro
131 lower_mask.s[3] = LOWER_MASK; in genrand_int32()
168 y = (cl_uint)((mt[kk] & UPPER_MASK) | (mt[kk + 1] & LOWER_MASK)); in genrand_int32()
176 y = (cl_uint)((mt[kk] & UPPER_MASK) | (mt[kk + 1] & LOWER_MASK)); in genrand_int32()
206 y = (cl_uint)((mt[kk] & UPPER_MASK) | (mt[kk + 1] & LOWER_MASK)); in genrand_int32()
209 y = (cl_uint)((mt[N - 1] & UPPER_MASK) | (mt[0] & LOWER_MASK)); in genrand_int32()
/external/python/cpython2/Objects/
Dunicodectype.c17 #define LOWER_MASK 0x08 macro
134 return (ctype->flags & LOWER_MASK) != 0; in _PyUnicode_IsLowercase()
/external/python/cpython2/Modules/
D_randommodule.c77 #define LOWER_MASK 0x7fffffffUL /* least significant r bits */ macro
107 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); in genrand_int32()
111 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); in genrand_int32()
114 y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK); in genrand_int32()
/external/python/cpython3/Modules/
D_randommodule.c80 #define LOWER_MASK 0x7fffffffU /* least significant r bits */ macro
131 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); in genrand_uint32()
135 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); in genrand_uint32()
138 y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK); in genrand_uint32()
/external/python/cpython3/Objects/
Dunicodectype.c16 #define LOWER_MASK 0x08 macro
174 return (ctype->flags & LOWER_MASK) != 0; in _PyUnicode_IsLowercase()
/external/python/cpython2/Tools/unicode/
Dmakeunicodedata.py60 LOWER_MASK = 0x08 variable
378 flags |= LOWER_MASK
/external/python/cpython3/Tools/unicode/
Dmakeunicodedata.py88 LOWER_MASK = 0x08 variable
416 flags |= LOWER_MASK