Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dcollationbuilder.h208 static inline int32_t indexFromTempCE32(uint32_t tempCE32) { in indexFromTempCE32() argument
209 tempCE32 -= 0x40400620; in indexFromTempCE32()
211 ((int32_t)(tempCE32 >> 11) & 0xfe000) | in indexFromTempCE32()
212 ((int32_t)(tempCE32 >> 10) & 0x1fc0) | in indexFromTempCE32()
213 ((int32_t)(tempCE32 >> 8) & 0x3f); in indexFromTempCE32()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationBuilder.java1398 private static int indexFromTempCE32(int tempCE32) {
1399 tempCE32 -= 0x40400620;
1401 ((tempCE32 >> 11) & 0xfe000) |
1402 ((tempCE32 >> 10) & 0x1fc0) |
1403 ((tempCE32 >> 8) & 0x3f);
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationBuilder.java1394 private static int indexFromTempCE32(int tempCE32) {
1395 tempCE32 -= 0x40400620;
1397 ((tempCE32 >> 11) & 0xfe000) |
1398 ((tempCE32 >> 10) & 0x1fc0) |
1399 ((tempCE32 >> 8) & 0x3f);