Home | History | Annotate | Download | only in libxml2

Lines Matching defs:codepoint

11281     int codepoint;
11299 codepoint = (utf[ix] & 0x1f) << 6;
11300 codepoint |= utf[ix+1] & 0x3f;
11301 if (!xmlIsCharQ(codepoint))
11309 codepoint = (utf[ix] & 0xf) << 12;
11310 codepoint |= (utf[ix+1] & 0x3f) << 6;
11311 codepoint |= utf[ix+2] & 0x3f;
11312 if (!xmlIsCharQ(codepoint))
11321 codepoint = (utf[ix] & 0x7) << 18;
11322 codepoint |= (utf[ix+1] & 0x3f) << 12;
11323 codepoint |= (utf[ix+2] & 0x3f) << 6;
11324 codepoint |= utf[ix+3] & 0x3f;
11325 if (!xmlIsCharQ(codepoint))