Home | History | Annotate | Download | only in dist

Lines Matching refs:cvalue

1632   cvalue     the character value
1639 ord2utf8(pcre_uint32 cvalue, pcre_uint8 *utf8bytes)
1642 if (cvalue > 0x7fffffffu)
1645 if (cvalue <= (pcre_uint32)utf8_table1[i]) break;
1649 *utf8bytes-- = 0x80 | (cvalue & 0x3f);
1650 cvalue >>= 6;
1652 *utf8bytes = utf8_table2[i] | cvalue;