Home
last modified time | relevance | path

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

123456

/freebsd-14.2/sys/dev/iavf/
H A Diavf_txrx_common.h57 struct iavf_rx_ptype_decoded decoded; in iavf_ptype_to_hash() local
59 decoded = decode_rx_desc_ptype(ptype); in iavf_ptype_to_hash()
61 if (!decoded.known) in iavf_ptype_to_hash()
64 if (decoded.outer_ip == IAVF_RX_PTYPE_OUTER_L2) in iavf_ptype_to_hash()
68 if (decoded.outer_ip_ver == IAVF_RX_PTYPE_OUTER_IPV6) { in iavf_ptype_to_hash()
69 switch (decoded.inner_prot) { in iavf_ptype_to_hash()
78 if (decoded.outer_ip_ver == IAVF_RX_PTYPE_OUTER_IPV4) { in iavf_ptype_to_hash()
79 switch (decoded.inner_prot) { in iavf_ptype_to_hash()
H A Diavf_txrx_iflib.c751 struct iavf_rx_ptype_decoded decoded; in iavf_rx_checksum() local
759 decoded = decode_rx_desc_ptype(ptype); in iavf_rx_checksum()
762 if (decoded.outer_ip == IAVF_RX_PTYPE_OUTER_IP && in iavf_rx_checksum()
763 decoded.outer_ip_ver == IAVF_RX_PTYPE_OUTER_IPV6) { in iavf_rx_checksum()
/freebsd-14.2/sys/dev/ice/
H A Dice_common_txrx.h281 struct ice_rx_ptype_decoded decoded; in ice_rx_checksum() local
289 decoded = ice_decode_rx_desc_ptype(ptype); in ice_rx_checksum()
292 if (!(decoded.known && decoded.outer_ip)) in ice_rx_checksum()
305 switch (decoded.inner_prot) { in ice_rx_checksum()
350 switch (decoded.inner_prot) { in ice_rx_checksum()
385 struct ice_rx_ptype_decoded decoded; in ice_ptype_to_hash() local
390 decoded = ice_decode_rx_desc_ptype(ptype); in ice_ptype_to_hash()
392 if (!decoded.known) in ice_ptype_to_hash()
395 if (decoded.outer_ip == ICE_RX_PTYPE_OUTER_L2) in ice_ptype_to_hash()
400 switch (decoded.inner_prot) { in ice_ptype_to_hash()
[all …]
/freebsd-14.2/contrib/wpa/src/wps/
H A Dupnp_xml.c229 unsigned char *decoded; in xml_get_base64_item() local
238 decoded = base64_decode(msg, os_strlen(msg), &len); in xml_get_base64_item()
240 if (decoded == NULL) { in xml_get_base64_item()
245 buf = wpabuf_alloc_ext_data(decoded, len); in xml_get_base64_item()
247 os_free(decoded); in xml_get_base64_item()
/freebsd-14.2/contrib/googletest/googlemock/src/
H A Dgmock-internal-utils.cc228 bool Base64Unescape(const std::string& encoded, std::string* decoded) { in Base64Unescape() argument
229 decoded->clear(); in Base64Unescape()
231 decoded->reserve(3 * (encoded_len / 4) + (encoded_len % 4)); in Base64Unescape()
240 decoded->clear(); in Base64Unescape()
248 decoded->push_back(dst); in Base64Unescape()
/freebsd-14.2/contrib/wpa/src/eap_server/
H A Dtncs.c669 unsigned char *decoded; in tncs_get_base64() local
683 if (decoded == NULL) { in tncs_get_base64()
687 return decoded; in tncs_get_base64()
782 unsigned char *decoded; in tncs_process_if_tnccs() local
861 if (decoded == NULL) { in tncs_process_if_tnccs()
869 os_free(decoded); in tncs_process_if_tnccs()
907 decoded = NULL; in tncs_process_if_tnccs()
923 if (decoded == NULL) { in tncs_process_if_tnccs()
930 if (decoded) { in tncs_process_if_tnccs()
933 decoded, decoded_len); in tncs_process_if_tnccs()
[all …]
/freebsd-14.2/contrib/wpa/src/eap_peer/
H A Dtncc.c620 unsigned char *decoded; in tncc_get_base64() local
634 if (decoded == NULL) { in tncc_get_base64()
638 return decoded; in tncc_get_base64()
690 unsigned char *decoded; in tncc_process_if_tnccs() local
773 if (decoded == NULL) { in tncc_process_if_tnccs()
781 os_free(decoded); in tncc_process_if_tnccs()
819 decoded = NULL; in tncc_process_if_tnccs()
835 if (decoded == NULL) { in tncc_process_if_tnccs()
842 if (decoded) { in tncc_process_if_tnccs()
845 decoded, decoded_len); in tncc_process_if_tnccs()
[all …]
/freebsd-14.2/sys/dev/ixl/
H A Dixl_txrx.c613 struct i40e_rx_ptype_decoded decoded; in ixl_ptype_to_hash() local
615 decoded = decode_rx_desc_ptype(ptype); in ixl_ptype_to_hash()
617 if (!decoded.known) in ixl_ptype_to_hash()
620 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_L2) in ixl_ptype_to_hash()
624 if (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6) { in ixl_ptype_to_hash()
625 switch (decoded.inner_prot) { in ixl_ptype_to_hash()
635 switch (decoded.inner_prot) { in ixl_ptype_to_hash()
740 struct i40e_rx_ptype_decoded decoded; in ixl_rx_checksum() local
748 decoded = decode_rx_desc_ptype(ptype); in ixl_rx_checksum()
751 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP && in ixl_rx_checksum()
[all …]
/freebsd-14.2/contrib/ntp/sntp/libevent/sample/
H A Dhttp-server.c187 struct evhttp_uri *decoded = NULL; in send_document_cb() local
203 decoded = evhttp_uri_parse(uri); in send_document_cb()
204 if (!decoded) { in send_document_cb()
211 path = evhttp_uri_get_path(decoded); in send_document_cb()
336 if (decoded) in send_document_cb()
337 evhttp_uri_free(decoded); in send_document_cb()
/freebsd-14.2/contrib/libevent/sample/
H A Dhttp-server.c187 struct evhttp_uri *decoded = NULL; in send_document_cb() local
203 decoded = evhttp_uri_parse(uri); in send_document_cb()
204 if (!decoded) { in send_document_cb()
211 path = evhttp_uri_get_path(decoded); in send_document_cb()
336 if (decoded) in send_document_cb()
337 evhttp_uri_free(decoded); in send_document_cb()
/freebsd-14.2/crypto/openssl/doc/man7/
H A Dprovider-decoder.pod36 /* Functions to export a decoded object */
49 object reference or intermediate decoded data from an encoded form
51 data from memory, it should provide a L<BIO_s_mem(3)> B<BIO>. The decoded
148 This property is used to specify the structure that the decoded data is
181 be decoded, with a set of bits I<selection> that are passed in an B<int>.
184 to be decoded. For example, those bits are assumed to be the same as those
187 if the object to be decoded is supposed to contain private key components.
226 the B<OSSL_CORE_BIO> I<in> to produce decoded data or an object to be
228 metadata that was decoded from the input. This L<OSSL_PARAM(3)> array is
252 could be decoded into some sort of object that this function understands,
/freebsd-14.2/crypto/openssh/
H A Dsshkey.c2888 (decoded = sshbuf_new()) == NULL) { in private2_uudecode()
2939 *decodedp = decoded; in private2_uudecode()
2940 decoded = NULL; in private2_uudecode()
2944 sshbuf_free(decoded); in private2_uudecode()
2977 (r = sshbuf_froms(decoded, &kdf)) != 0 || in private2_decrypt()
3037 if (sshbuf_len(decoded) < authlen || in private2_decrypt()
3058 if (sshbuf_len(decoded) != 0) { in private2_decrypt()
3111 (r = private2_decrypt(decoded, passphrase, in sshkey_parse_private2()
3148 sshbuf_free(decoded); in sshkey_parse_private2()
3160 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()
/freebsd-14.2/sys/contrib/device-tree/Bindings/spi/
H A Dspi-cadence.txt17 - is-decoded-cs : Flag to indicate whether decoder is used or not.
28 is-decoded-cs = <0>;
H A Dspi-cadence.yaml45 is-decoded-cs:
70 is-decoded-cs = <0>;
H A Dcadence-quadspi.txt20 - cdns,is-decoded-cs : Flag to indicate whether decoder is used or not.
53 cdns,is-decoded-cs;
/freebsd-14.2/contrib/llvm-project/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 "
/freebsd-14.2/crypto/openssl/doc/man3/
H A DOSSL_DECODER_from_bio.pod33 I<*pdata> is updated to point at the location after what has been decoded,
69 /* pkey is created with the decoded data from the bio */
97 /* pkey is created with the decoded data from the buffer */
H A DOSSL_PARAM_allocate_from_text.pod59 I<value_n> decimal characters, which are decoded, and the resulting
68 If I<value> contains characters that couldn't be decoded as
85 I<value_n> hexadecimal characters, which are decoded, and the
87 If I<value> contains characters that couldn't be decoded as
/freebsd-14.2/contrib/bearssl/inc/
H A Dbearssl_x509.h1021 unsigned char decoded; member
1096 if (ctx->decoded && ctx->err == 0) { in br_x509_decoder_get_pkey()
1119 if (!ctx->decoded) { in br_x509_decoder_last_error()
/freebsd-14.2/crypto/openssl/crypto/rsa/
H A Drsa_gen.c484 unsigned char *decoded = NULL; in rsa_keygen_pairwise_test() local
504 decoded = ciphertxt + ciphertxt_len; in rsa_keygen_pairwise_test()
516 decoded_len = RSA_private_decrypt(ciphertxt_len, ciphertxt, decoded, rsa, in rsa_keygen_pairwise_test()
519 || memcmp(decoded, plaintxt, decoded_len) != 0) in rsa_keygen_pairwise_test()
/freebsd-14.2/sys/contrib/zstd/doc/
H A Dzstd_compression_format.md543 to generate the decoded literals.
599 When all _sequences_ are decoded,
718 The match length is equal to the decoded `Baseline` plus
795 decoded previously from their normalized distribution.
807 These sequences are decoded in order from first to last.
876 Once literals and sequences have been decoded,
882 from the decoded literals to the output.
893 Note that all offsets leading to previously decoded data
1064 - Value decoded : small values use 1 less bit :
1073 | Value read | Value decoded | Number of bits used |
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/mtd/
H A Dcadence-quadspi.txt19 - cdns,is-decoded-cs : Flag to indicate whether decoder is used or not.
52 cdns,is-decoded-cs;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1298 std::string decoded; in ExpandRLE() local
1299 decoded.reserve(packet.size()); in ExpandRLE()
1304 char char_to_repeat = decoded.back(); in ExpandRLE()
1310 decoded.push_back(char_to_repeat); in ExpandRLE()
1315 decoded.push_back(escapee); in ExpandRLE()
1317 decoded.push_back(*c); in ExpandRLE()
1320 return decoded; in ExpandRLE()
/freebsd-14.2/sys/contrib/device-tree/Bindings/input/
H A Dgpio-decoder.txt5 - gpios: a spec of gpios (at least two) to be decoded to a number with

123456