Home | History | Annotate | Download | only in common

Lines Matching defs:maxFastUChar

57  *   In this case, makeconv may increase maxFastUChar automatically to U+FFFF.
74 * maxFastUChar=((_MBCSHeader.version[2]<<8)|0xff)
77 * maxFastUChar allocated in blocks of 64 for indexing with the 6 bits from
81 * uint16_t mbcsIndex[(maxFastUChar+1)>>6];
85 * from code points up to maxFastUChar (and roundtrips to 0x00) are moved to
94 * For SBCS, maxFastUChar should be at least U+0FFF. The initial makeconv
96 * the file, a larger maxFastUChar only affects stage 3 block allocation size
104 * For MBCS, maxFastUChar should be at least U+D7FF (=initial value).
110 * maxFastUChar could be up to U+FFFF to cover the whole BMP, which could be
114 * (With maxFastUChar=0xffff, makeconv would have to check for mbcsIndex value
230 * (maxFastUChar=_MBCSHeader.version[2])!=0
232 * maxFastUChar=(maxFastUChar<<8)|0xff;
233 * uint16_t mbcsIndex[(maxFastUChar+1)>>6];
387 UChar maxFastUChar; /* for utf8Friendly data */