Home
last modified time | relevance | path

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

/external/icu4c/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/icu4c/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.cpp440 intBytes[0]=(char)(BytesTrie::kMinTwoByteValueLead+(i>>8)); in writeValueAndFinal()