Home
last modified time | relevance | path

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

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