Lines Matching refs:ch
1271 int cL, cH;
1273 cH = fgetc(fFile);
1274 c = cL | (cH << 8);
1275 if (cH == EOF) {
1283 int cL, cH;
1284 cH = fgetc(fFile);
1286 c = cL | (cH << 8);
1301 int ch = fgetc(fFile); // Note: c and ch are separate cause eof test doesn't work on UChar type.
1302 if (ch == EOF) {
1308 if (ch <= 0x7f) {
1310 c = ch;
1317 if (ch >= 0xF0) {nBytes=4;}
1318 else if (ch >= 0xE0) {nBytes=3;}
1319 else if (ch >= 0xC0) {nBytes=2;}
1327 bytes[0] = (unsigned char)ch;