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

  /external/icu/icu4c/source/common/
ucnv_bld.cpp     [all...]
ucnvmbcs.h 59 * In this case, makeconv may increase maxFastUChar automatically to U+FFFF.
76 * maxFastUChar=((_MBCSHeader.version[2]<<8)|0xff)
79 * maxFastUChar allocated in blocks of 64 for indexing with the 6 bits from
83 * uint16_t mbcsIndex[(maxFastUChar+1)>>6];
87 * from code points up to maxFastUChar (and roundtrips to 0x00) are moved to
96 * For SBCS, maxFastUChar should be at least U+0FFF. The initial makeconv
98 * the file, a larger maxFastUChar only affects stage 3 block allocation size
106 * For MBCS, maxFastUChar should be at least U+D7FF (=initial value).
112 * maxFastUChar could be up to U+FFFF to cover the whole BMP, which could be
116 * (With maxFastUChar=0xffff, makeconv would have to check for mbcsIndex valu
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetMBCS.java 102 char maxFastUChar; /* for utf8Friendly data */
468 mbcsTable.maxFastUChar = SBCS_FAST_MAX;
474 mbcsTable.maxFastUChar = (char)((header.version[2]<<8) | 0xff);
602 int stageUTF8Length=(mbcsTable.maxFastUChar+1)>>6;
    [all...]

Completed in 320 milliseconds