Home
last modified time | relevance | path

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

/fatfs-2.7.6/
Dff.c808 WCHAR hs, wc; in put_utf() local
810 hs = (WCHAR)(chr >> 16); in put_utf()
812 if (hs == 0) { /* Single encoding unit? */ in put_utf()
817 …if (szb < 2 || !IsSurrogateH(hs) || !IsSurrogateL(wc)) return 0; /* Buffer overflow or wrong surro… in put_utf()
818 *buf++ = hs; in put_utf()
2594 WCHAR wc, hs; local
2611 hs = 0;
2616 if (hs == 0 && IsSurrogate(wc)) { /* Is it a surrogate? */
2617 hs = wc; continue; /* Get low surrogate */
2619 …nw = put_utf((DWORD)hs << 16 | wc, &fno->fname[di], FF_LFN_BUF - di); /* Store it in API encoding …
[all …]