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

  /external/icu/icu4c/source/common/
bytestrie.cpp 34 if(leadByte<kMinTwoByteValueLead) {
37 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos;
115 if(node<kMinTwoByteValueLead) {
118 delta=((node-kMinTwoByteValueLead)<<8)|*pos++;
bytestriebuilder.cpp 445 intBytes[0]=(char)(BytesTrie::kMinTwoByteValueLead+(i>>8));
  /external/icu/icu4c/source/common/unicode/
bytestrie.h 369 if(leadByte>=(kMinTwoByteValueLead<<1)) {
484 static const int32_t kMinTwoByteValueLead=kMinOneByteValueLead+kMaxOneByteValue+1; // 0x51
487 static const int32_t kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BytesTrie.java 686 if(leadByte<kMinTwoByteValueLead) {
689 value=((leadByte-kMinTwoByteValueLead)<<8)|(bytes[pos]&0xff);
701 if(leadByte>=(kMinTwoByteValueLead<<1)) {
788 if(node<kMinTwoByteValueLead) {
791 delta=((node-kMinTwoByteValueLead)<<8)|(bytes_[pos++]&0xff);
    [all...]
BytesTrieBuilder.java 235 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BytesTrie.java 717 if(leadByte<kMinTwoByteValueLead) {
720 value=((leadByte-kMinTwoByteValueLead)<<8)|(bytes[pos]&0xff);
732 if(leadByte>=(kMinTwoByteValueLead<<1)) {
819 if(node<kMinTwoByteValueLead) {
822 delta=((node-kMinTwoByteValueLead)<<8)|(bytes_[pos++]&0xff);
    [all...]
BytesTrieBuilder.java 239 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8));
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 1382 milliseconds