/freebsd/crypto/openssl/crypto/ |
H A D | punycode.c | 202 static int codepoint2utf8(unsigned char *out, unsigned long utf) in codepoint2utf8() argument 204 if (utf <= 0x7F) { in codepoint2utf8() 206 out[0] = (unsigned char)utf; in codepoint2utf8() 209 } else if (utf <= 0x07FF) { in codepoint2utf8() 211 out[0] = (unsigned char)(((utf >> 6) & 0x1F) | 0xC0); in codepoint2utf8() 212 out[1] = (unsigned char)(((utf >> 0) & 0x3F) | 0x80); in codepoint2utf8() 215 } else if (utf <= 0xFFFF) { in codepoint2utf8() 217 out[0] = (unsigned char)(((utf >> 12) & 0x0F) | 0xE0); in codepoint2utf8() 218 out[1] = (unsigned char)(((utf >> 6) & 0x3F) | 0x80); in codepoint2utf8() 219 out[2] = (unsigned char)(((utf >> 0) & 0x3F) | 0x80); in codepoint2utf8() [all …]
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | T.utf | 3 echo T.utf: tests of utf functions
|
H A D | T.utfre | 1 echo T.utfre: tests of regular expression code for Unicode/utf-8
|
H A D | T.builtin | 37 diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower) for utf-8'
|
/freebsd/crypto/openssl/test/recipes/ |
H A D | 25-test_x509.t | 34 my $utf = srctop_file(@certs, "cyrillic.utf8"); 42 is(cmp_text($out_utf8, $utf),
|
H A D | 25-test_crl.t | 24 my $utf = srctop_file("test/certs", "cyrillic_crl.utf8");
|
/freebsd/contrib/libarchive/ |
H A D | .editorconfig |
|
/freebsd/share/i18n/esdb/UTF/ |
H A D | UTF.alias | 4 7 unicode-1-1-utf-7
|
/freebsd/crypto/openssl/test/ |
H A D | param_build_test.c | 97 char *utf = NULL; in template_public_test() local 184 || !TEST_true(OSSL_PARAM_get_utf8_string(p, &utf, 0)) in template_public_test() 185 || !TEST_str_eq(utf, "foo") in template_public_test() 210 OPENSSL_free(utf); in template_public_test()
|
/freebsd/bin/sh/tests/builtins/ |
H A D | case6.0 | 12 # $c2$c3$c4 form one utf-8 character
|
/freebsd/contrib/dialog/po/ |
H A D | th.po | 15 "Content-Type: text/plain; charset=utf-8\n"
|
H A D | zh_CN.po | 17 "Content-Type: text/plain; charset=utf-8\n"
|
H A D | eo.po | 15 "Content-Type: text/plain; charset=utf-8\n"
|
H A D | nb.po | 13 "Content-Type: text/plain; charset=utf-8\n"
|
H A D | ms.po | 15 "Content-Type: text/plain; charset=utf-8\n"
|
H A D | sl.po | 15 "Content-Type: text/plain; charset=utf-8\n"
|
/freebsd/usr.bin/vi/catalog/ |
H A D | swedish.UTF-8.base | 9 010 "Loggning utförs inte, ångra är inte möjligt" 11 012 "Loggning utförs inte, ångra är inte möjligt" 12 013 "Loggning utförs inte, ångra ångra är inte möjligt" 236 246 "%s finns, ej sparad; använd ! för att utföra operationen" 240 250 "%s: filen ändrad efter denna kopia togs; använd ! för att utföra operationen"
|
/freebsd/contrib/one-true-awk/ |
H A D | FIXES | 105 Disabled utf-8 for non-multibyte locales, such as C or POSIX. 108 Fixed a buffer overflow in substr with utf-8 strings.
|
/freebsd/contrib/expat/doc/ |
H A D | ok.min.css | 2 …utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='8' viewBox='0 0 12 8' width='24' fill='non…
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | EVP_PKEY_fromdata.pod | 234 datatype = "printable string (utf-8 encoding expected)"; 237 datatype = "printable string pointer (utf-8 encoding expected)";
|
/freebsd/sys/contrib/libsodium/packaging/nuget/ |
H A D | package.gsl | 9 <?xml version="1.0" encoding="utf-8"?> 109 <?xml version="1.0" encoding="utf-8"?> 239 <?xml version="1.0" encoding="utf-8"?>
|
/freebsd/contrib/tzcode/ |
H A D | calendars | 172 coding: utf-8
|
/freebsd/contrib/tzdata/ |
H A D | calendars | 172 coding: utf-8
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Path.inc | 227 // Convert to utf-16. 258 // Convert to utf-16. 357 // Convert to utf-16. 582 // Convert to utf-16. 1376 // Convert to utf-16.
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | BUILD.bazel | 88 "//:msvc_compiler": ["-utf-8"],
|