Home
last modified time | relevance | path

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

/NextBSD/contrib/subversion/subversion/libsvn_subr/utf8proc/
HDutf8proc.c231 int32_t hangul_sindex; in utf8proc_decompose_char() local
234 hangul_sindex = uc - UTF8PROC_HANGUL_SBASE; in utf8proc_decompose_char()
236 if (hangul_sindex >= 0 && hangul_sindex < UTF8PROC_HANGUL_SCOUNT) { in utf8proc_decompose_char()
240 hangul_sindex / UTF8PROC_HANGUL_NCOUNT; in utf8proc_decompose_char()
242 (hangul_sindex % UTF8PROC_HANGUL_NCOUNT) / UTF8PROC_HANGUL_TCOUNT; in utf8proc_decompose_char()
244 hangul_tindex = hangul_sindex % UTF8PROC_HANGUL_TCOUNT; in utf8proc_decompose_char()
483 int32_t hangul_sindex; in utf8proc_reencode() local
496 hangul_sindex = *starter - UTF8PROC_HANGUL_SBASE; in utf8proc_reencode()
497 if (hangul_sindex >= 0 && hangul_sindex < UTF8PROC_HANGUL_SCOUNT && in utf8proc_reencode()
498 (hangul_sindex % UTF8PROC_HANGUL_TCOUNT) == 0) { in utf8proc_reencode()