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

  /external/icu/icu4c/source/common/unicode/
bytestrie.h 390 if(delta>=kMinTwoByteDeltaLead) {
497 static const int32_t kMinTwoByteDeltaLead=kMaxOneByteDelta+1; // 0xc0
502 static const int32_t kMaxTwoByteDelta=((kMinThreeByteDeltaLead-kMinTwoByteDeltaLead)<<8)-1; // 0x2fff
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BytesTrie.java 720 if(delta<kMinTwoByteDeltaLead) {
723 delta=((delta-kMinTwoByteDeltaLead)<<8)|(bytes[pos++]&0xff);
739 if(delta>=kMinTwoByteDeltaLead) {
    [all...]
BytesTrieBuilder.java 280 intBytes[0]=(byte)(BytesTrie.kMinTwoByteDeltaLead+(i>>8));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BytesTrie.java 751 if(delta<kMinTwoByteDeltaLead) {
754 delta=((delta-kMinTwoByteDeltaLead)<<8)|(bytes[pos++]&0xff);
770 if(delta>=kMinTwoByteDeltaLead) {
    [all...]
BytesTrieBuilder.java 284 intBytes[0]=(byte)(BytesTrie.kMinTwoByteDeltaLead+(i>>8));
  /external/icu/icu4c/source/common/
bytestrie.cpp 51 if(delta<kMinTwoByteDeltaLead) {
54 delta=((delta-kMinTwoByteDeltaLead)<<8)|*pos++;
bytestriebuilder.cpp 481 intBytes[0]=(char)(BytesTrie::kMinTwoByteDeltaLead+(i>>8));
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 312 milliseconds