Home | History | Annotate | Download | only in collationperf

Lines Matching refs:cH

1273             int  cL, cH;
1275 cH = fgetc(fFile);
1276 c = cL | (cH << 8);
1277 if (cH == EOF) {
1285 int cL, cH;
1286 cH = fgetc(fFile);
1288 c = cL | (cH << 8);
1303 int ch = fgetc(fFile); // Note: c and ch are separate cause eof test doesn't work on UChar type.
1304 if (ch == EOF) {
1310 if (ch <= 0x7f) {
1312 c = ch;
1319 if (ch >= 0xF0) {nBytes=4;}
1320 else if (ch >= 0xE0) {nBytes=3;}
1321 else if (ch >= 0xC0) {nBytes=2;}
1329 bytes[0] = (unsigned char)ch;