Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dcollationbuilder.h193 static inline int32_t indexFromTempCE(int64_t tempCE) { in indexFromTempCE() argument
194 tempCE -= INT64_C(0x4040000006002000); in indexFromTempCE()
196 ((int32_t)(tempCE >> 43) & 0xfe000) | in indexFromTempCE()
197 ((int32_t)(tempCE >> 42) & 0x1fc0) | in indexFromTempCE()
198 ((int32_t)(tempCE >> 24) & 0x3f); in indexFromTempCE()
200 static inline int32_t strengthFromTempCE(int64_t tempCE) { in strengthFromTempCE() argument
201 return ((int32_t)tempCE >> 8) & 3; in strengthFromTempCE()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationBuilder.java1379 private static int indexFromTempCE(long tempCE) {
1380 tempCE -= 0x4040000006002000L;
1382 ((int)(tempCE >> 43) & 0xfe000) |
1383 ((int)(tempCE >> 42) & 0x1fc0) |
1384 ((int)(tempCE >> 24) & 0x3f);
1386 private static int strengthFromTempCE(long tempCE) {
1387 return ((int)tempCE >> 8) & 3;
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationBuilder.java1383 private static int indexFromTempCE(long tempCE) {
1384 tempCE -= 0x4040000006002000L;
1386 ((int)(tempCE >> 43) & 0xfe000) |
1387 ((int)(tempCE >> 42) & 0x1fc0) |
1388 ((int)(tempCE >> 24) & 0x3f);
1390 private static int strengthFromTempCE(long tempCE) {
1391 return ((int)tempCE >> 8) & 3;