Home
last modified time | relevance | path

Searched refs:UTF_DECOMPOSED (Results 1 – 2 of 2) sorted by relevance

/xnu-10002.61.3/bsd/vfs/
H A Dvfs_utfconv.c211 int decompose = (flags & UTF_DECOMPOSED); in utf8_encodelen()
282 int decompose = (flags & UTF_DECOMPOSED); in utf8_encodestr()
452 decompose = (flags & UTF_DECOMPOSED); in utf8_decodestr()
792 if (flags & ~(UTF_DECOMPOSED | UTF_PRECOMPOSED | UTF_NO_NULL_TERM | UTF_ESCAPE_ILLEGAL)) { in utf8_normalizestr()
795 decompose = (flags & UTF_DECOMPOSED); in utf8_normalizestr()
/xnu-10002.61.3/bsd/sys/
H A Dutfconv.h43 #define UTF_DECOMPOSED 0x0004 /* generate fully decomposed UCS-2 */ macro