Lines Matching refs:codepoint
9604 int codepoint; in xmlCheckCdataPush() local
9622 codepoint = (utf[ix] & 0x1f) << 6; in xmlCheckCdataPush()
9623 codepoint |= utf[ix+1] & 0x3f; in xmlCheckCdataPush()
9624 if (!xmlIsCharQ(codepoint)) in xmlCheckCdataPush()
9632 codepoint = (utf[ix] & 0xf) << 12; in xmlCheckCdataPush()
9633 codepoint |= (utf[ix+1] & 0x3f) << 6; in xmlCheckCdataPush()
9634 codepoint |= utf[ix+2] & 0x3f; in xmlCheckCdataPush()
9635 if (!xmlIsCharQ(codepoint)) in xmlCheckCdataPush()
9644 codepoint = (utf[ix] & 0x7) << 18; in xmlCheckCdataPush()
9645 codepoint |= (utf[ix+1] & 0x3f) << 12; in xmlCheckCdataPush()
9646 codepoint |= (utf[ix+2] & 0x3f) << 6; in xmlCheckCdataPush()
9647 codepoint |= utf[ix+3] & 0x3f; in xmlCheckCdataPush()
9648 if (!xmlIsCharQ(codepoint)) in xmlCheckCdataPush()