Home
last modified time | relevance | path

Searched refs:decoded (Results 1 – 25 of 86) sorted by relevance

1234

/openbsd/lib/libkeynote/
H A Dsignature.c391 ptr = decoded; in kn_decode_key()
404 ptr = decoded; in kn_decode_key()
405 if (decoded == NULL) { in kn_decode_key()
415 decoded = strdup(key); in kn_decode_key()
416 if (decoded == NULL) { in kn_decode_key()
421 ptr = decoded; in kn_decode_key()
705 ptr = decoded; in keynote_sigverify_assertion()
718 ptr = decoded; in keynote_sigverify_assertion()
719 if (decoded == NULL) { in keynote_sigverify_assertion()
736 ptr = decoded; in keynote_sigverify_assertion()
[all …]
/openbsd/gnu/usr.bin/perl/cpan/Encode/t/
H A Dutf8warnings.t20 … FB_CROAK | LEAVE_SRC) }, 'Surrogate UTF-8 byte sequence \xED\xA0\x80 is decoded with strict UTF-8…
21 …ript line /, 'Error message contains strict UTF-8 name and original (not decoded) invalid sequence…
26 …ed\xa0", FB_CROAK | LEAVE_SRC) }, 'Invalid byte sequence \xED\xA0 is not decoded with strict UTF-8…
27 …ript line /, 'Error message contains strict UTF-8 name and original (not decoded) invalid sequence…
32 …ed\xa0", FB_CROAK | LEAVE_SRC) }, 'Invalid byte sequence \xED\xA0 is not decoded with non-strict u…
33 …t line /, 'Error message contains non-strict utf8 name and original (not decoded) invalid sequence…
H A Dmime_header_iso2022jp.t38 for my $decoded (sort keys %mime){
39 my $encoded = $mime{$decoded};
41 my $header = Encode::encode('MIME-Header-ISO_2022_JP', decode('euc-jp', $decoded));
44 is(encode('euc-jp', $utf8), $decoded);
/openbsd/gnu/usr.bin/perl/cpan/Encode/lib/Encode/MIME/
H A DHeader.pm142 my $decoded = _decode_b($enc, $text, $chk);
143 … $stop = 1 if not defined $decoded and not ref $chk and $chk and $chk & Encode::RETURN_ON_ERR;
144 $output .= (defined $decoded ? $decoded : $text) unless $stop;
147 my $decoded = _decode_q($enc, $text, $chk);
148 … $stop = 1 if not defined $decoded and not ref $chk and $chk and $chk & Encode::RETURN_ON_ERR;
149 $output .= (defined $decoded ? $decoded : $text) unless $stop;
/openbsd/gnu/usr.bin/perl/cpan/MIME-Base64/t/
H A Dbase64.t335 my $decoded = decode_base64($encoded);
336 if ($decoded ne $plain) {
337 print "test $testno ($encoded): expected $plain, got $decoded\n";
373 my $decoded = decode_base64($encoded);
374 if ($decoded ne $expected) {
375 die "test $testno ($encoded): expected $expected, got $decoded\n";
/openbsd/gnu/usr.bin/perl/cpan/PerlIO-via-QuotedPrint/t/
H A DQuotedPrint.t23 my $decoded = <<EOD;
41 ok( (print $out $decoded), 'print to file' );
59 is( $decoded,join( '',<$in> ), 'check decoding' );
/openbsd/gnu/usr.bin/perl/cpan/JSON-PP/t/
H A Dcore_bools.t80 ok JSON::PP::is_bool($should_true), 'decoded true is a boolean';
81 ok JSON::PP::is_bool($should_false), 'decoded false is a boolean';
83 ok JSON::PP::is_bool($should_true), 'decoded true is a core boolean';
84 ok JSON::PP::is_bool($should_false), 'decoded false is a core boolean';
/openbsd/usr.bin/ssh/
H A Dsshkey.c2953 (decoded = sshbuf_new()) == NULL) { in private2_uudecode()
3004 *decodedp = decoded; in private2_uudecode()
3005 decoded = NULL; in private2_uudecode()
3009 sshbuf_free(decoded); in private2_uudecode()
3042 (r = sshbuf_froms(decoded, &kdf)) != 0 || in private2_decrypt()
3102 if (sshbuf_len(decoded) < authlen || in private2_decrypt()
3123 if (sshbuf_len(decoded) != 0) { in private2_decrypt()
3176 (r = private2_decrypt(decoded, passphrase, in sshkey_parse_private2()
3213 sshbuf_free(decoded); in sshkey_parse_private2()
3225 struct sshbuf *decoded = NULL; in sshkey_parse_private2_pubkey() local
[all …]
H A Dkexsntrup761x25519.c168 int r, decoded; in kex_kem_sntrup761x25519_dec() local
192 decoded = crypto_kem_sntrup761_dec(kem_key, ciphertext, in kex_kem_sntrup761x25519_dec()
211 if (decoded != 0) { in kex_kem_sntrup761x25519_dec()
/openbsd/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTProperties.td9 "packet must have been decoded before triggering the verification of "
21 "packet must have been decoded before stopping the decoding of the "
/openbsd/gnu/usr.bin/perl/cpan/Encode/bin/
H A Dpiconv107 my $decoded = decode( $from, $_, $Opt{check} );
108 my $encoded = encode( $to, $decoded );
112 my $decoded = decode( $from, $_, $Opt{check} );
113 my $encoded = encode( $to, $decoded );
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/
H A D12_write.t69 # CPAN::Meta::YAML->read_string on UTF-8 decoded data
71 "case $c->{label}: read_string on UTF-8 decoded $short_tempfile" );
H A D10_read.t55 ok( utf8::is_utf8( $got->[0]->{$case->{utf8}} ), "utf8 decoded" );
H A DREADME.md64 and decoded and typically need some custom test code to load the file and see
69 YAML file is ASCII or UTF-8 encoded, can be decoded successfully, but has
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1299 std::string decoded; in ExpandRLE() local
1300 decoded.reserve(packet.size()); in ExpandRLE()
1305 char char_to_repeat = decoded.back(); in ExpandRLE()
1311 decoded.push_back(char_to_repeat); in ExpandRLE()
1316 decoded.push_back(escapee); in ExpandRLE()
1318 decoded.push_back(*c); in ExpandRLE()
1321 return decoded; in ExpandRLE()
/openbsd/gnu/gcc/gcc/config/i386/
H A Dppro.md58 ;; particular how many cycles they take to be decoded.
77 ;; - an instruction with 1 uop can be decoded by any of the three
79 ;; - an instruction with 1 to 4 uops can be decoded only by decoder 0
81 ;; - a complex (microcode) instruction can also only be decoded by
96 ;; Most instructions can be decoded on any of the three decoders.
134 ;; they can only be decoded on decoder0. Modelling their latencies
136 ;; executed in the core. So we just model that they can only be decoded
735 ;; reg-reg instructions produce 1 uop so they can be decoded on any of
744 ;; so they have to be decoded on decoder0.
758 ;; decoded on decoder0 as well.
H A Dathlon.md51 ;; Model the fact that double decoded instruction may take 2 cycles
53 ;; is used (this is needed to allow troughput of 1.5 double decoded
58 ;; and only double decoded instruction may occupy unit in the first cycle.
62 ;; too. Vector decoded instructions then can't be issued when
429 ;; fcomi is vector decoded by uses only one pipe.
693 ;; cvtps2pd. Model same way the other double decoded FP conversions.
731 ;; cvtsi2sd reg,reg is double decoded (vector on Athlon)
H A Dk6.md64 ;; can be decoded in two parallel short decoders, or one complex instruction can
65 ;; be decoded in either the long or the vector decoder. For all practical
/openbsd/usr.sbin/httpd/
H A Dserver_http.c131 char decoded[1024]; in server_http_authenticate() local
142 memset(decoded, 0, sizeof(decoded)); in server_http_authenticate()
152 if (b64_pton(strchr(ba->kv_value, ' ') + 1, (uint8_t *)decoded, in server_http_authenticate()
153 sizeof(decoded)) <= 0) in server_http_authenticate()
156 if ((clt_pass = strchr(decoded, ':')) == NULL) in server_http_authenticate()
159 clt_user = decoded; in server_http_authenticate()
198 explicit_bzero(decoded, sizeof(decoded)); in server_http_authenticate()
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dada-lang.c740 if (decoded == NULL) in ada_encode()
832 char *decoded; in ada_decode() local
877 decoded = decoding_buffer; in ada_decode()
892 decoded[j] = encoded[i]; in ada_decode()
907 strcpy (decoded + j, ada_opname_table[k].decoded); in ada_decode()
932 decoded[j] = '.'; in ada_decode()
944 decoded[j] = '\000'; in ada_decode()
947 if (isupper (decoded[i]) || decoded[i] == ' ') in ada_decode()
953 return decoded; in ada_decode()
962 return decoded; in ada_decode()
[all …]
H A Dada-exp.y641 if (string.length == strlen (ada_opname_table[i].decoded)-2 in string_to_operator()
642 && strncasecmp (string.ptr, ada_opname_table[i].decoded+1, in string_to_operator()
645 strncpy (string.ptr, ada_opname_table[i].decoded, in string_to_operator()
H A Dada-lang.h74 const char *decoded; member
/openbsd/gnu/usr.bin/gcc/gcc/config/i386/
H A Dppro.md22 ;; one -- an instruction with 1 uop can be decoded by any of the
24 ;; few -- an instruction with 1 to 4 uops can be decoded only by
/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp349 if (!inst || (!std::holds_alternative<LR_W>(inst->decoded) && in AtomicSequence()
350 !std::holds_alternative<LR_D>(inst->decoded))) in AtomicSequence()
355 if (!inst || !std::holds_alternative<B>(inst->decoded)) in AtomicSequence()
357 auto bne_exit = std::get<B>(inst->decoded); in AtomicSequence()
365 if (!inst || (!std::holds_alternative<SC_W>(inst->decoded) && in AtomicSequence()
366 !std::holds_alternative<SC_D>(inst->decoded))) in AtomicSequence()
371 if (!inst || !std::holds_alternative<B>(inst->decoded)) in AtomicSequence()
373 auto bne_start = std::get<B>(inst->decoded); in AtomicSequence()
641 auto decoded = is_rvc ? pat.decode(try_rvc) : pat.decode(inst); in Decode() local
642 return DecodeResult{decoded, inst, is_rvc, pat}; in Decode()
[all …]
/openbsd/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Denc-chars.t1 # tell parser the source POD has already been decoded from bytes to chars

1234