Searched defs:kMinTwoByteDeltaLead (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/common/unicode/
H A Dbytestrie.h390 if(delta>=kMinTwoByteDeltaLead) {
497 static const int32_t kMinTwoByteDeltaLead=kMaxOneByteDelta+1; // 0xc0 member in class:BytesTrie
502 static const int32_t kMaxTwoByteDelta=((kMinThreeByteDeltaLead-kMinTwoByteDeltaLead)<<8)-1; // 0x2fff
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DBytesTrie.java716 if(delta<kMinTwoByteDeltaLead) {
719 delta=((delta-kMinTwoByteDeltaLead)<<8)|(bytes[pos++]&0xff);
735 if(delta>=kMinTwoByteDeltaLead) {
1023 /*package*/ static final int kMinTwoByteDeltaLead=kMaxOneByteDelta+1; // 0xc0 field in class:BytesTrie
1028 /*package*/ static final int kMaxTwoByteDelta=((kMinThreeByteDeltaLead-kMinTwoByteDeltaLead)<<8)-1; // 0x2fff
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBytesTrie.java751 if(delta<kMinTwoByteDeltaLead) {
754 delta=((delta-kMinTwoByteDeltaLead)<<8)|(bytes[pos++]&0xff);
770 if(delta>=kMinTwoByteDeltaLead) {
1058 /*package*/ static final int kMinTwoByteDeltaLead=kMaxOneByteDelta+1; // 0xc0 field in class:BytesTrie
1063 /*package*/ static final int kMaxTwoByteDelta=((kMinThreeByteDeltaLead-kMinTwoByteDeltaLead)<<8)-1; // 0x2fff

Completed in 82 milliseconds