Home
last modified time | relevance | path

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

/external/icu/android_icu4j/src/main/java/android/icu/util/
DBytesTrie.java688 } else if(leadByte<kMinThreeByteValueLead) { in readValue()
691 … value=((leadByte-kMinThreeByteValueLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff); in readValue()
702 if(leadByte<(kMinThreeByteValueLead<<1)) { in skipValue()
790 } else if(node<kMinThreeByteValueLead) { in branchNext()
793 … delta=((node-kMinThreeByteValueLead)<<16)|((bytes_[pos]&0xff)<<8)|(bytes_[pos+1]&0xff); in branchNext()
1017 …/*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; … local
1021 …/*package*/ static final int kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-…
DBytesTrieBuilder.java238 intBytes[0]=(byte)(BytesTrie.kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DBytesTrie.java719 } else if(leadByte<kMinThreeByteValueLead) { in readValue()
722 … value=((leadByte-kMinThreeByteValueLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff); in readValue()
733 if(leadByte<(kMinThreeByteValueLead<<1)) { in skipValue()
821 } else if(node<kMinThreeByteValueLead) { in branchNext()
824 … delta=((node-kMinThreeByteValueLead)<<16)|((bytes_[pos]&0xff)<<8)|(bytes_[pos+1]&0xff); in branchNext()
1048 …/*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; … local
1052 …/*package*/ static final int kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-…
DBytesTrieBuilder.java242 intBytes[0]=(byte)(BytesTrie.kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()
/external/icu/icu4c/source/common/unicode/
Dbytestrie.h370 if(leadByte<(kMinThreeByteValueLead<<1)) { in skipValue()
487 … static const int32_t kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c variable
491 static const int32_t kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-1;
/external/icu/icu4c/source/common/
Dbytestrie.cpp36 } else if(leadByte<kMinThreeByteValueLead) { in readValue()
39 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1]; in readValue()
117 } else if(node<kMinThreeByteValueLead) { in branchNext()
120 delta=((node-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1]; in branchNext()
Dbytestriebuilder.cpp448 intBytes[0]=(char)(BytesTrie::kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()