Lines Matching refs:codepoint
10661 int codepoint;
10679 codepoint = (utf[ix] & 0x1f) << 6;
10680 codepoint |= utf[ix+1] & 0x3f;
10681 if (!xmlIsCharQ(codepoint))
10689 codepoint = (utf[ix] & 0xf) << 12;
10690 codepoint |= (utf[ix+1] & 0x3f) << 6;
10691 codepoint |= utf[ix+2] & 0x3f;
10692 if (!xmlIsCharQ(codepoint))
10701 codepoint = (utf[ix] & 0x7) << 18;
10702 codepoint |= (utf[ix+1] & 0x3f) << 12;
10703 codepoint |= (utf[ix+2] & 0x3f) << 6;
10704 codepoint |= utf[ix+3] & 0x3f;
10705 if (!xmlIsCharQ(codepoint))