Home
last modified time | relevance | path

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

/external/icu4c/common/unicode/
Dbytestrie.h369 if(leadByte<(kMinThreeByteValueLead<<1)) { in skipValue()
486 … static const int32_t kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c variable
490 static const int32_t kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-1;
/external/icu4c/common/
Dbytestrie.cpp34 } else if(leadByte<kMinThreeByteValueLead) { in readValue()
37 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1]; in readValue()
115 } else if(node<kMinThreeByteValueLead) { in branchNext()
118 delta=((node-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1]; in branchNext()
Dbytestriebuilder.cpp443 intBytes[0]=(char)(BytesTrie::kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()