Home
last modified time | relevance | path

Searched refs:utf (Results 1 – 25 of 40) sorted by relevance

12

/freebsd/crypto/openssl/crypto/
H A Dpunycode.c202 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 DT.utf3 echo T.utf: tests of utf functions
H A DT.utfre1 echo T.utfre: tests of regular expression code for Unicode/utf-8
H A DT.builtin37 diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower) for utf-8'
/freebsd/crypto/openssl/test/recipes/
H A D25-test_x509.t34 my $utf = srctop_file(@certs, "cyrillic.utf8");
42 is(cmp_text($out_utf8, $utf),
H A D25-test_crl.t24 my $utf = srctop_file("test/certs", "cyrillic_crl.utf8");
/freebsd/contrib/libarchive/
H A D.editorconfig
/freebsd/share/i18n/esdb/UTF/
H A DUTF.alias4 7 unicode-1-1-utf-7
/freebsd/crypto/openssl/test/
H A Dparam_build_test.c97 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 Dcase6.012 # $c2$c3$c4 form one utf-8 character
/freebsd/contrib/dialog/po/
H A Dth.po15 "Content-Type: text/plain; charset=utf-8\n"
H A Dzh_CN.po17 "Content-Type: text/plain; charset=utf-8\n"
H A Deo.po15 "Content-Type: text/plain; charset=utf-8\n"
H A Dnb.po13 "Content-Type: text/plain; charset=utf-8\n"
H A Dms.po15 "Content-Type: text/plain; charset=utf-8\n"
H A Dsl.po15 "Content-Type: text/plain; charset=utf-8\n"
/freebsd/usr.bin/vi/catalog/
H A Dswedish.UTF-8.base9 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 DFIXES105 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 Dok.min.css2utf-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 DEVP_PKEY_fromdata.pod234 datatype = "printable string (utf-8 encoding expected)";
237 datatype = "printable string pointer (utf-8 encoding expected)";
/freebsd/sys/contrib/libsodium/packaging/nuget/
H A Dpackage.gsl9 <?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 Dcalendars172 coding: utf-8
/freebsd/contrib/tzdata/
H A Dcalendars172 coding: utf-8
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc227 // 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 DBUILD.bazel88 "//:msvc_compiler": ["-utf-8"],

12