Searched defs:maxFastUChar (Results 1 - 4 of 4) sorted by relevance

/external/chromium/third_party/icu/source/common/
H A Ducnvmbcs.h57 * In this case, makeconv may increase maxFastUChar automatically to U+FFFF.
71 * maxFastUChar=((_MBCSHeader.version[2]<<8)|0xff)
74 * maxFastUChar allocated in blocks of 64 for indexing with the 6 bits from
78 * uint16_t mbcsIndex[(maxFastUChar+1)>>6];
82 * from code points up to maxFastUChar (and roundtrips to 0x00) are moved to
91 * For SBCS, maxFastUChar should be at least U+0FFF. The initial makeconv
93 * the file, a larger maxFastUChar only affects stage 3 block allocation size
101 * For MBCS, maxFastUChar should be at least U+D7FF (=initial value).
107 * maxFastUChar could be up to U+FFFF to cover the whole BMP, which could be
111 * (With maxFastUChar
384 UChar maxFastUChar; /* for utf8Friendly data */ member in struct:UConverterMBCSTable
[all...]
H A Ducnv_bld.c1354 int32_t maxFastUChar, mbcsIndexLength; local
1498 * uint16_t[(maxFastUChar+1)>>6];
1499 * where maxFastUChar=((mbcsHeader.version[2]<<8)|0xff).
1501 maxFastUChar=0;
1504 mbcsHeader.version[1]>=3 && (maxFastUChar=mbcsHeader.version[2])!=0
1506 maxFastUChar=(maxFastUChar<<8)|0xff;
1507 mbcsIndexLength=((maxFastUChar+1)>>6)*2; /* number of bytes */
/external/icu4c/common/
H A Ducnvmbcs.h57 * In this case, makeconv may increase maxFastUChar automatically to U+FFFF.
71 * maxFastUChar=((_MBCSHeader.version[2]<<8)|0xff)
74 * maxFastUChar allocated in blocks of 64 for indexing with the 6 bits from
78 * uint16_t mbcsIndex[(maxFastUChar+1)>>6];
82 * from code points up to maxFastUChar (and roundtrips to 0x00) are moved to
91 * For SBCS, maxFastUChar should be at least U+0FFF. The initial makeconv
93 * the file, a larger maxFastUChar only affects stage 3 block allocation size
101 * For MBCS, maxFastUChar should be at least U+D7FF (=initial value).
107 * maxFastUChar could be up to U+FFFF to cover the whole BMP, which could be
111 * (With maxFastUChar
384 UChar maxFastUChar; /* for utf8Friendly data */ member in struct:UConverterMBCSTable
[all...]
H A Ducnv_bld.c1354 int32_t maxFastUChar, mbcsIndexLength; local
1498 * uint16_t[(maxFastUChar+1)>>6];
1499 * where maxFastUChar=((mbcsHeader.version[2]<<8)|0xff).
1501 maxFastUChar=0;
1504 mbcsHeader.version[1]>=3 && (maxFastUChar=mbcsHeader.version[2])!=0
1506 maxFastUChar=(maxFastUChar<<8)|0xff;
1507 mbcsIndexLength=((maxFastUChar+1)>>6)*2; /* number of bytes */

Completed in 63 milliseconds