Home
last modified time | relevance | path

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

/xnu-8020.140.41/bsd/vfs/
H A Dvfs_utfconv.c74 #define SP_HIGH_FIRST 0xD800u macro
341 if (ucs_ch >= SP_HIGH_FIRST && ucs_ch <= SP_HIGH_LAST in utf8_encodestr()
348 pair = ((ucs_ch - SP_HIGH_FIRST) << SP_HALF_SHIFT) in utf8_encodestr()
535 ucs_ch = (ch >> SP_HALF_SHIFT) + SP_HIGH_FIRST; in utf8_decodestr()
536 if (ucs_ch < SP_HIGH_FIRST || ucs_ch > SP_HIGH_LAST) { in utf8_decodestr()
736 ucs_ch = (ch >> SP_HALF_SHIFT) + SP_HIGH_FIRST; in utf8_validatestr()
737 if (ucs_ch < SP_HIGH_FIRST || ucs_ch > SP_HIGH_LAST) { in utf8_validatestr()