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

/external/icu/icu4c/source/common/
H A Dbytestrie.cpp32 if(leadByte<kMinTwoByteValueLead) {
35 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos;
113 if(node<kMinTwoByteValueLead) {
116 delta=((node-kMinTwoByteValueLead)<<8)|*pos++;
H A Dbytestriebuilder.cpp442 intBytes[0]=(char)(BytesTrie::kMinTwoByteValueLead+(i>>8));
/external/icu/icu4c/source/common/unicode/
H A Dbytestrie.h368 if(leadByte>=(kMinTwoByteValueLead<<1)) {
483 static const int32_t kMinTwoByteValueLead=kMinOneByteValueLead+kMaxOneByteValue+1; // 0x51 member in class:BytesTrie
486 static const int32_t kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBytesTrie.java711 if(leadByte<kMinTwoByteValueLead) {
714 value=((leadByte-kMinTwoByteValueLead)<<8)|(bytes[pos]&0xff);
726 if(leadByte>=(kMinTwoByteValueLead<<1)) {
813 if(node<kMinTwoByteValueLead) {
816 delta=((node-kMinTwoByteValueLead)<<8)|(bytes_[pos++]&0xff);
1039 /*package*/ static final int kMinTwoByteValueLead=kMinOneByteValueLead+kMaxOneByteValue+1; // 0x51 field in class:BytesTrie
1042 /*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c
H A DBytesTrieBuilder.java237 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8));

Completed in 290 milliseconds