Home
last modified time | relevance | path

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

/mirbsd/src/gnu/usr.bin/perl/ext/Unicode/Normalize/
DNormalize.xs109 static UV composite_uv (UV uv, UV uv2) in composite_uv() argument
113 if (! uv2 || OVER_UTF_MAX(uv) || OVER_UTF_MAX(uv2)) in composite_uv()
116 if (Hangul_IsL(uv) && Hangul_IsV(uv2)) { in composite_uv()
118 uv2 -= Hangul_VBase; /* vindex */ in composite_uv()
119 return(Hangul_SBase + (uv * Hangul_VCount + uv2) * Hangul_TCount); in composite_uv()
121 if (Hangul_IsLV(uv) && Hangul_IsT(uv2)) { in composite_uv()
122 uv2 -= Hangul_TBase; /* tindex */ in composite_uv()
123 return(uv + uv2); in composite_uv()
135 if (uv2 == i->nextchar) in composite_uv()
645 getComposite(uv, uv2)
[all …]
/mirbsd/src/gnu/usr.bin/perl/
Dutf8.c1527 UV uv2 = swash_fetch(*swashp, tmpbuf, TRUE); in Perl_to_utf8_case() local
1529 if (uv2) { in Perl_to_utf8_case()
1531 UV uv3 = UNI_TO_NATIVE(uv2); in Perl_to_utf8_case()