Searched refs:kMinTwoByteValueLead (Results 1 - 7 of 7) sorted by relevance

/external/icu/icu4c/source/common/
H A Dbytestrie.cpp34 if(leadByte<kMinTwoByteValueLead) {
37 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos;
115 if(node<kMinTwoByteValueLead) {
118 delta=((node-kMinTwoByteValueLead)<<8)|*pos++;
H A Dbytestriebuilder.cpp444 intBytes[0]=(char)(BytesTrie::kMinTwoByteValueLead+(i>>8));
/external/icu/icu4c/source/common/unicode/
H A Dbytestrie.h369 if(leadByte>=(kMinTwoByteValueLead<<1)) {
484 static const int32_t kMinTwoByteValueLead=kMinOneByteValueLead+kMaxOneByteValue+1; // 0x51 member in class:BytesTrie
487 static const int32_t kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DBytesTrie.java682 if(leadByte<kMinTwoByteValueLead) {
685 value=((leadByte-kMinTwoByteValueLead)<<8)|(bytes[pos]&0xff);
697 if(leadByte>=(kMinTwoByteValueLead<<1)) {
784 if(node<kMinTwoByteValueLead) {
787 delta=((node-kMinTwoByteValueLead)<<8)|(bytes_[pos++]&0xff);
1010 /*package*/ static final int kMinTwoByteValueLead=kMinOneByteValueLead+kMaxOneByteValue+1; // 0x51 field in class:BytesTrie
1013 /*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c
H A DBytesTrieBuilder.java235 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8));
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBytesTrie.java717 if(leadByte<kMinTwoByteValueLead) {
720 value=((leadByte-kMinTwoByteValueLead)<<8)|(bytes[pos]&0xff);
732 if(leadByte>=(kMinTwoByteValueLead<<1)) {
819 if(node<kMinTwoByteValueLead) {
822 delta=((node-kMinTwoByteValueLead)<<8)|(bytes_[pos++]&0xff);
1045 /*package*/ static final int kMinTwoByteValueLead=kMinOneByteValueLead+kMaxOneByteValue+1; // 0x51 field in class:BytesTrie
1048 /*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c
H A DBytesTrieBuilder.java239 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8));

Completed in 113 milliseconds