| /src/sys/arch/powerpc/powerpc/ |
| compat_16_machdep.c | 97 struct utrapframe * const utf = &frame.sc_frame; local 118 memcpy(utf->fixreg, tf->tf_fixreg, sizeof(utf->fixreg)); 119 utf->lr = tf->tf_lr; 120 utf->cr = tf->tf_cr; 121 utf->xer = tf->tf_xer; 122 utf->ctr = tf->tf_ctr; 123 utf->srr0 = tf->tf_srr0; 124 utf->srr1 = tf->tf_srr1 & PSL_USERSRR1; 128 utf->srr1 |= pcb->pcb_flags & (PCB_FE0|PCB_FE1) 219 struct utrapframe * const utf = &sc.sc_frame; local [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/tests/ |
| msgmerge-compendium-6 | 7 # mm-ko.utf-8.pot mm-ko.utf-8.po mm-ko-comp.utf-8.po 12 tmpfiles="$tmpfiles mm-ko.utf-8.pot" 14 ${MSGCONV} --to-code=UTF-8 -o mm-ko.utf-8.pot ${top_srcdir}/tests/mm-ko.ascii.pot 16 tmpfiles="$tmpfiles mm-ko.utf-8.po" 18 ${MSGCONV} --to-code=UTF-8 -o mm-ko.utf-8.po ${top_srcdir}/tests/mm-ko.euc-kr.po 20 tmpfiles="$tmpfiles mm-ko-comp.utf-8.po [all...] |
| msgunfmt-tcl-1 | 12 fconfigure stdout -encoding utf-8 50 msgstr "Content-Type: text/plain; charset=UTF-8\n"
|
| /src/crypto/external/bsd/openssl/dist/crypto/ |
| punycode.c | 198 * Encode a code point using UTF-8 202 static int codepoint2utf8(unsigned char *out, unsigned long utf) 204 if (utf <= 0x7F) { 206 out[0] = (unsigned char)utf; 209 } else if (utf <= 0x07FF) { 211 out[0] = (unsigned char)(((utf >> 6) & 0x1F) | 0xC0); 212 out[1] = (unsigned char)(((utf >> 0) & 0x3F) | 0x80); 215 } else if (utf <= 0xFFFF) { 217 out[0] = (unsigned char)(((utf >> 12) & 0x0F) | 0xE0); 218 out[1] = (unsigned char)(((utf >> 6) & 0x3F) | 0x80) [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/ |
| punycode.c | 200 * Encode a code point using UTF-8 204 static int codepoint2utf8(unsigned char *out, unsigned long utf) 206 if (utf <= 0x7F) { 208 out[0] = (unsigned char)utf; 211 } else if (utf <= 0x07FF) { 213 out[0] = (unsigned char)(((utf >> 6) & 0x1F) | 0xC0); 214 out[1] = (unsigned char)(((utf >> 0) & 0x3F) | 0x80); 217 } else if (utf <= 0xFFFF) { 219 out[0] = (unsigned char)(((utf >> 12) & 0x0F) | 0xE0); 220 out[1] = (unsigned char)(((utf >> 6) & 0x3F) | 0x80) [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| msgunfmt.tcl | 58 # msgunfmt expects the output in UTF-8 encoding. 59 fconfigure stdout -encoding utf-8 64 # In newer tcl versions, the .msg files are in UTF-8 encoding. 65 fconfigure $fd -encoding utf-8 71 set msgcat::header [subst "MIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\n"]
|
| /src/sys/arch/aarch64/aarch64/ |
| vm_machdep.c | 141 struct trapframe * const utf = (struct trapframe *)(uv + USPACE) - 1; local 142 l2->l_md.md_utf = utf; 144 *utf = *l1->l_md.md_utf; 151 utf->tf_sp = (vaddr_t)(stack) + stacksize; 154 utf->tf_sp &= -8; 155 utf->tf_reg[13] = utf->tf_sp; 158 utf->tf_sp &= -16; 162 struct trapframe * const ktf = utf - 1; 167 ktf->tf_reg[29] = (uint64_t)utf; [all...] |
| /src/external/historical/nawk/dist/testdir/ |
| T.utf | 3 echo T.utf: tests of utf functions 186 # printf(%c) for utf
|
| /src/crypto/external/bsd/openssl.old/dist/test/recipes/ |
| 25-test_crl.t | 24 my $utf = srctop_file("test/certs", "cyrillic_crl.utf8");
|
| 25-test_x509.t | 29 my $utf = srctop_file("test/certs", "cyrillic.utf8");
|
| /src/external/gpl2/groff/dist/src/roff/nroff/ |
| nroff.sh | 9 UTF-8) 17 *.UTF-8) 26 utf-8)
|
| /src/sys/arch/mips/mips/ |
| trap.c | 149 struct trapframe *utf = l->l_md.md_utf; local 151 utf->tf_regs[_R_V0] = 0; 152 utf->tf_regs[_R_V1] = 1; 153 utf->tf_regs[_R_A3] = 0; 175 struct trapframe * const utf = l->l_md.md_utf; local 195 tf = utf; 248 KASSERT(tf == utf); 684 mips_emul_inst(status, cause, pc, utf); 690 mips_emul_inst(status, cause, pc, utf); 692 utf->tf_regs[_R_CAUSE] = cause [all...] |
| /src/crypto/external/apache2/openssl/dist/test/recipes/ |
| 25-test_crl.t | 24 my $utf = srctop_file("test/certs", "cyrillic_crl.utf8");
|
| /src/crypto/external/bsd/openssl/dist/test/recipes/ |
| 25-test_crl.t | 24 my $utf = srctop_file("test/certs", "cyrillic_crl.utf8");
|
| 25-test_x509.t | 34 my $utf = srctop_file(@certs, "cyrillic.utf8"); 42 is(cmp_text($out_utf8, $utf), 47 skip "Platform doesn't support command line UTF-8", 1 if $^O =~ /^(VMS|msys)$/;
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| package.d | 78 std.utf,
|
| uri.d | 148 throw new URIException("Undefined UTF-32 code point"); 242 throw new URIException("UTF-32 code point size too large"); 246 throw new URIException("UTF-32 code point size too small"); 255 throw new URIException("UTF-32 unaligned String"); 265 throw new URIException("Incorrect UTF-32 multi-byte sequence"); 270 throw new URIException("Unknown UTF-32 code point"); 310 * Decodes the URI string encodedURI into a UTF-8 string and returns it. 318 import std.utf : encode; 335 * Decodes the URI string encodedURI into a UTF-8 string and returns it. All 342 import std.utf : encode [all...] |
| string.d | 463 s = string or InputRange of characters to search in correct UTF format 474 If the parameters are not valid UTF, the result will still 479 formed codepoint, then a $(REF UTFException, std,utf) may be thrown. 548 import std.utf : byChar, byWchar, byDchar; 615 import std.utf : byCodeUnit, byChar, byWchar; 662 import std.utf : byDchar, byCodeUnit, UTFException, codeLength; 719 // Encode UTF-16 surrogate pair 728 if (r.empty) // invalid UTF - missing second of pair 854 import std.utf : byDchar, codeLength; 907 s = string or ForwardRange of characters to search in correct UTF forma [all...] |
| path.d | 285 import std.utf : byDchar; 314 import std.utf : byDchar; 332 import std.utf : byDchar; 627 import std.utf : byChar, byWchar, byDchar; 763 import std.utf : byChar; 875 import std.utf : byChar; 1146 import std.utf : byChar, byWchar, byDchar; 1279 import std.utf : byChar, byWchar; 1301 import std.utf : byUTF; 1384 import std.utf : byChar, byWchar [all...] |
| /src/external/bsd/nsd/dist/contrib/ |
| nsd.spec | 35 iconv -f iso8859-1 -t utf-8 doc/RELNOTES > doc/RELNOTES.utf8 36 iconv -f iso8859-1 -t utf-8 doc/CREDITS > doc/CREDITS.utf8
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| param_build_test.c | 97 char *utf = NULL; local 184 || !TEST_true(OSSL_PARAM_get_utf8_string(p, &utf, 0)) 185 || !TEST_str_eq(utf, "foo") 210 OPENSSL_free(utf);
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/ |
| cstring.d | 138 import std.utf : byUTF; 200 import std.utf : byChar, byWchar;
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/ |
| utf.d | 2 * Encode and decode UTF-8, UTF-16 and UTF-32 strings. 4 * For Win32 systems, the C wchar_t type is UTF-16 and corresponds to the D 6 * For Posix systems, the C wchar_t type is UTF-32 and corresponds to 7 * the D utf.dchar type. 9 * UTF character support is restricted to (\u0000 <= character <= \U0010FFFF). 13 * $(LINK http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8)<br> 22 module core.internal.utf; 27 * Test if c is a valid UTF-32 character [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/ |
| crc.d | 510 import std.utf : byChar; 545 import std.utf : byChar; 581 import std.utf : byChar;
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| identifier.d | 23 import dmd.root.utf;
|