1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-30 22:43:14 +03:00

- tree.c parser.c encoding.c: spent a bit more time looking

at the parsing speed and DOM handling. Added a few more
  speedups.
Daniel
This commit is contained in:
Daniel Veillard
2001-04-30 11:46:40 +00:00
parent 3ed155fcdf
commit 02141eabb2
5 changed files with 109 additions and 52 deletions

View File

@ -384,24 +384,25 @@ isolat1ToUTF8(unsigned char* out, int *outlen,
unsigned char* outend = out + *outlen;
const unsigned char* inend;
unsigned int c;
int bits;
inend = in + (*inlen);
while ((in < inend) && (out - outstart + 5 < *outlen)) {
c= *in++;
while (in < inend) {
c = *in++;
/* assertion: c is a single UTF-4 value */
if (out >= outend)
break;
if (c < 0x80) { *out++= c; bits= -6; }
else { *out++= ((c >> 6) & 0x1F) | 0xC0; bits= 0; }
for ( ; bits >= 0; bits-= 6) {
if (c < 0x80) {
*out++ = c;
processed++;
continue;
} else {
*out++= ((c >> 6) & 0x1F) | 0xC0;
if (out >= outend)
break;
*out++= ((c >> bits) & 0x3F) | 0x80;
break;
*out++= (c & 0x3F) | 0x80;
processed++;
}
processed = (const unsigned char*) in;
}
*outlen = out - outstart;
*inlen = processed - base;