Home
last modified time | relevance | path

Searched refs:UPPER_MASK (Results 1 – 19 of 19) sorted by relevance

/third_party/iowow/src/utils/
Dmt19937ar.c57 #define UPPER_MASK 0x80000000UL /* most significant w-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.c127 #define UPPER_MASK 0x80000000 /* most significant w-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.c79 #define UPPER_MASK 0x80000000U /* most significant w-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.c20 #define UPPER_MASK 0x80 macro
184 return (ctype->flags & UPPER_MASK) != 0; in _PyUnicode_IsUppercase()
/third_party/icu/icu4c/source/common/
Ducasemap_imp.h250 static const uint32_t UPPER_MASK = 0x3ff; variable
Ducasemap.cpp590 uint32_t upper = data & UPPER_MASK; in toUpper()
Dustrcase.cpp1044 uint32_t upper = data & UPPER_MASK; in toUpper()
/third_party/flutter/skia/third_party/externals/icu/source/common/
Ducasemap_imp.h250 static const uint32_t UPPER_MASK = 0x3ff; variable
Ducasemap.cpp590 uint32_t upper = data & UPPER_MASK; in toUpper()
Dustrcase.cpp1044 uint32_t upper = data & UPPER_MASK; in toUpper()
/third_party/node/deps/icu-small/source/common/
Ducasemap_imp.h250 static const uint32_t UPPER_MASK = 0x3ff; variable
Ducasemap.cpp590 uint32_t upper = data & UPPER_MASK; in toUpper()
Dustrcase.cpp1044 uint32_t upper = data & UPPER_MASK; in toUpper()
/third_party/skia/third_party/externals/icu/source/common/
Ducasemap_imp.h250 static const uint32_t UPPER_MASK = 0x3ff; variable
Ducasemap.cpp590 uint32_t upper = data & UPPER_MASK; in toUpper()
Dustrcase.cpp1044 uint32_t upper = data & UPPER_MASK; in toUpper()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DCaseMapImpl.java818 private static final int UPPER_MASK = 0x3ff; field in CaseMapImpl.GreekUpper
1337 int upper = data & UPPER_MASK; in toUpper()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCaseMapImpl.java813 private static final int UPPER_MASK = 0x3ff; field in CaseMapImpl.GreekUpper
1332 int upper = data & UPPER_MASK; in toUpper()
/third_party/python/Tools/unicode/
Dmakeunicodedata.py92 UPPER_MASK = 0x80 variable
426 flags |= UPPER_MASK