Home
last modified time | relevance | path

Searched refs:tempCE (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
Dcollationbuilder.h195 static inline int32_t indexFromTempCE(int64_t tempCE) { in indexFromTempCE() argument
196 tempCE -= INT64_C(0x4040000006002000); in indexFromTempCE()
198 ((int32_t)(tempCE >> 43) & 0xfe000) | in indexFromTempCE()
199 ((int32_t)(tempCE >> 42) & 0x1fc0) | in indexFromTempCE()
200 ((int32_t)(tempCE >> 24) & 0x3f); in indexFromTempCE()
202 static inline int32_t strengthFromTempCE(int64_t tempCE) { in strengthFromTempCE() argument
203 return ((int32_t)tempCE >> 8) & 3; in strengthFromTempCE()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationBuilder.java1384 private static int indexFromTempCE(long tempCE) {
1385 tempCE -= 0x4040000006002000L;
1387 ((int)(tempCE >> 43) & 0xfe000) |
1388 ((int)(tempCE >> 42) & 0x1fc0) |
1389 ((int)(tempCE >> 24) & 0x3f);
1391 private static int strengthFromTempCE(long tempCE) {
1392 return ((int)tempCE >> 8) & 3;
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationBuilder.java1388 private static int indexFromTempCE(long tempCE) {
1389 tempCE -= 0x4040000006002000L;
1391 ((int)(tempCE >> 43) & 0xfe000) |
1392 ((int)(tempCE >> 42) & 0x1fc0) |
1393 ((int)(tempCE >> 24) & 0x3f);
1395 private static int strengthFromTempCE(long tempCE) {
1396 return ((int)tempCE >> 8) & 3;