Home
last modified time | relevance | path

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

/xnu-8020.140.41/bsd/vfs/
H A Dvfs_utfconv.c450 int extrabytes; in utf8_decodestr() local
471 extrabytes = utf_extrabytes[byte >> 3]; in utf8_decodestr()
472 if ((extrabytes < 0) || ((int)utf8len < extrabytes)) { in utf8_decodestr()
475 utf8len -= extrabytes; in utf8_decodestr()
477 switch (extrabytes) { in utf8_decodestr()
610 if (extrabytes > 0) { in utf8_decodestr()
611 utf8len += extrabytes; in utf8_decodestr()
667 size_t extrabytes; in utf8_validatestr() local
673 extrabytes = utf_extrabytes[byte >> 3]; in utf8_validatestr()
675 if (utf8len < extrabytes) { in utf8_validatestr()
[all …]