Lines Matching refs:cvalue
59 PRIV(ord2utf)(uint32_t cvalue, PCRE2_UCHAR *buffer) in PRIV()
61 (void)(cvalue); in PRIV()
81 PRIV(ord2utf)(uint32_t cvalue, PCRE2_UCHAR *buffer) in PRIV()
88 if ((int)cvalue <= PRIV(utf8_table1)[i]) break; in PRIV()
92 *buffer-- = 0x80 | (cvalue & 0x3f); in PRIV()
93 cvalue >>= 6; in PRIV()
95 *buffer = PRIV(utf8_table2)[i] | cvalue; in PRIV()
101 if (cvalue <= 0xffff) in PRIV()
103 *buffer = (PCRE2_UCHAR)cvalue; in PRIV()
106 cvalue -= 0x10000; in PRIV()
107 *buffer++ = 0xd800 | (cvalue >> 10); in PRIV()
108 *buffer = 0xdc00 | (cvalue & 0x3ff); in PRIV()
114 *buffer = (PCRE2_UCHAR)cvalue; in PRIV()