Home
last modified time | relevance | path

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

/openssl-master/crypto/pkcs12/
A Dp12_utl.c84 unsigned long utf32chr = 0; in OPENSSL_utf82uni() local
132 utf32chr -= 0x10000; in OPENSSL_utf82uni()
133 hi = 0xD800 + (utf32chr>>10); in OPENSSL_utf82uni()
134 lo = 0xDC00 + (utf32chr&0x3ff); in OPENSSL_utf82uni()
156 unsigned long utf32chr; in bmp_to_utf8() local
163 utf32chr = (utf16[0]<<8) | utf16[1]; in bmp_to_utf8()
165 if (utf32chr >= 0xD800 && utf32chr < 0xE000) { /* two chars */ in bmp_to_utf8()
170 utf32chr -= 0xD800; in bmp_to_utf8()
171 utf32chr <<= 10; in bmp_to_utf8()
174 utf32chr |= lo-0xDC00; in bmp_to_utf8()
[all …]

Completed in 4 milliseconds