Home
last modified time | relevance | path

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

/openssl/crypto/pkcs12/
H A Dp12_utl.c82 unsigned long utf32chr = 0; in OPENSSL_utf82uni() local
128 utf32chr -= 0x10000; in OPENSSL_utf82uni()
129 hi = 0xD800 + (utf32chr>>10); in OPENSSL_utf82uni()
130 lo = 0xDC00 + (utf32chr&0x3ff); in OPENSSL_utf82uni()
152 unsigned long utf32chr; in bmp_to_utf8() local
159 utf32chr = (utf16[0]<<8) | utf16[1]; in bmp_to_utf8()
161 if (utf32chr >= 0xD800 && utf32chr < 0xE000) { /* two chars */ in bmp_to_utf8()
166 utf32chr -= 0xD800; in bmp_to_utf8()
167 utf32chr <<= 10; in bmp_to_utf8()
170 utf32chr |= lo-0xDC00; in bmp_to_utf8()
[all …]

Completed in 4 milliseconds