HomeSort by relevance Sort by last modified time
    Searched refs:kMinThreeByteValueLead (Results 1 - 3 of 3) sorted by null

  /external/icu4c/common/
bytestrie.cpp 34 } else if(leadByte<kMinThreeByteValueLead) {
37 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1];
115 } else if(node<kMinThreeByteValueLead) {
118 delta=((node-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1];
bytestriebuilder.cpp 445 intBytes[0]=(char)(BytesTrie::kMinThreeByteValueLead+(i>>16));
  /external/icu4c/common/unicode/
bytestrie.h 369 if(leadByte<(kMinThreeByteValueLead<<1)) {
486 static const int32_t kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c
490 static const int32_t kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-1;

Completed in 1273 milliseconds