Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DBytesTrie.java771 } else if(leadByte<kMinThreeByteValueLead) { in readValue()
774 … value=((leadByte-kMinThreeByteValueLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff); in readValue()
785 if(leadByte<(kMinThreeByteValueLead<<1)) { in skipValue()
873 } else if(node<kMinThreeByteValueLead) { in branchNext()
876 … delta=((node-kMinThreeByteValueLead)<<16)|((bytes_[pos]&0xff)<<8)|(bytes_[pos+1]&0xff); in branchNext()
1100 …/*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; … local
1104 …/*package*/ static final int kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-…
DBytesTrieBuilder.java242 intBytes[0]=(byte)(BytesTrie.kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DBytesTrie.java737 } else if(leadByte<kMinThreeByteValueLead) { in readValue()
740 … value=((leadByte-kMinThreeByteValueLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff); in readValue()
751 if(leadByte<(kMinThreeByteValueLead<<1)) { in skipValue()
839 } else if(node<kMinThreeByteValueLead) { in branchNext()
842 … delta=((node-kMinThreeByteValueLead)<<16)|((bytes_[pos]&0xff)<<8)|(bytes_[pos+1]&0xff); in branchNext()
1066 …/*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; … local
1070 …/*package*/ static final int kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-…
DBytesTrieBuilder.java238 intBytes[0]=(byte)(BytesTrie.kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()
/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()
/external/icu/icu4c/source/common/unicode/
Dbytestrie.h408 if(leadByte<(kMinThreeByteValueLead<<1)) { in skipValue()
525 … static const int32_t kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c variable
529 static const int32_t kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-1;