Home | History | Annotate | Download | only in ubrkperf

Lines Matching defs:bytes

592             // Figure out the lenght of the char and read the rest of the bytes
604 unsigned char bytes[10];
605 bytes[0] = (unsigned char)ch;
608 bytes[i] = fgetc(fFile);
609 if (bytes[i] < 0x80 || bytes[i] >= 0xc0) {
610 fprintf(stderr, "utf-8 encoded file %s contains corrupt data at offset %d. Expected %d bytes, byte %d is invalid. First byte is %02X\n", fName, ftell(fFile), nBytes, i, ch);
616 // Convert the bytes from the temp array to a Unicode char.
619 U8_NEXT_UNSAFE(bytes, i, cp);
710 // (The number of bytes read from file per loop iteration depends on external encoding.)