Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DBytesTrie.java711 if(leadByte<kMinTwoByteValueLead) { in readValue()
714 value=((leadByte-kMinTwoByteValueLead)<<8)|(bytes[pos]&0xff); in readValue()
726 if(leadByte>=(kMinTwoByteValueLead<<1)) { in skipValue()
813 if(node<kMinTwoByteValueLead) { in branchNext()
816 delta=((node-kMinTwoByteValueLead)<<8)|(bytes_[pos++]&0xff); in branchNext()
1039 …/*package*/ static final int kMinTwoByteValueLead=kMinOneByteValueLead+kMaxOneByteValue+1; // 0x51 local
1042 …/*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; …
DBytesTrieBuilder.java237 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8)); in writeValueAndFinal()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DBytesTrie.java676 if(leadByte<kMinTwoByteValueLead) { in readValue()
679 value=((leadByte-kMinTwoByteValueLead)<<8)|(bytes[pos]&0xff); in readValue()
691 if(leadByte>=(kMinTwoByteValueLead<<1)) { in skipValue()
778 if(node<kMinTwoByteValueLead) { in branchNext()
781 delta=((node-kMinTwoByteValueLead)<<8)|(bytes_[pos++]&0xff); in branchNext()
1004 …/*package*/ static final int kMinTwoByteValueLead=kMinOneByteValueLead+kMaxOneByteValue+1; // 0x51 local
1007 …/*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; …
DBytesTrieBuilder.java233 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8)); in writeValueAndFinal()
/external/icu/icu4c/source/common/unicode/
Dbytestrie.h368 if(leadByte>=(kMinTwoByteValueLead<<1)) { in skipValue()
483 static const int32_t kMinTwoByteValueLead=kMinOneByteValueLead+kMaxOneByteValue+1; // 0x51 variable
486 … static const int32_t kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c
/external/icu/icu4c/source/common/
Dbytestrie.cpp32 if(leadByte<kMinTwoByteValueLead) { in readValue()
35 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos; in readValue()
113 if(node<kMinTwoByteValueLead) { in branchNext()
116 delta=((node-kMinTwoByteValueLead)<<8)|*pos++; in branchNext()
Dbytestriebuilder.cpp442 intBytes[0]=(char)(BytesTrie::kMinTwoByteValueLead+(i>>8)); in writeValueAndFinal()