Searched refs:cvalue (Results 1 - 1 of 1) sorted by relevance

/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_ord2utf8.c60 cvalue the character value
68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer) argument
75 if ((int)cvalue <= PRIV(utf8_table1)[i]) break;
79 *buffer-- = 0x80 | (cvalue & 0x3f);
80 cvalue >>= 6;
82 *buffer = PRIV(utf8_table2)[i] | cvalue;
87 (void)(cvalue); /* Keep compiler happy; this function won't ever be */

Completed in 36 milliseconds