/freebsd/sys/dev/ice/ |
H A D | ice_common_txrx.h | 281 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() 295 is_ipv4 = (decoded.outer_ip == ICE_RX_PTYPE_OUTER_IP) && in ice_rx_checksum() 296 (decoded.outer_ip_ver == ICE_RX_PTYPE_OUTER_IPV4); in ice_rx_checksum() 297 is_ipv6 = (decoded.outer_ip == ICE_RX_PTYPE_OUTER_IP) && in ice_rx_checksum() 298 (decoded.outer_ip_ver == ICE_RX_PTYPE_OUTER_IPV6); in ice_rx_checksum() 305 switch (decoded.inner_prot) { in ice_rx_checksum() 350 switch (decoded in ice_rx_checksum() 385 struct ice_rx_ptype_decoded decoded; ice_ptype_to_hash() local [all...] |
/freebsd/sys/dev/iavf/ |
H A D | iavf_txrx_common.h | 57 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 D | iavf_txrx_iflib.c | 751 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/contrib/wpa/src/wps/ |
H A D | upnp_xml.c | 229 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/contrib/googletest/googlemock/src/ |
H A D | gmock-internal-utils.cc | 229 bool Base64Unescape(const std::string& encoded, std::string* decoded) { in Base64Unescape() argument 230 decoded->clear(); in Base64Unescape() 232 decoded->reserve(3 * (encoded_len / 4) + (encoded_len % 4)); in Base64Unescape() 241 decoded->clear(); in Base64Unescape() 249 decoded->push_back(dst); in Base64Unescape()
|
/freebsd/contrib/wpa/src/eap_server/ |
H A D | tncs.c | 669 unsigned char *decoded; in tncs_get_base64() local 681 decoded = base64_decode(pos, os_strlen(pos), decoded_len); in tncs_get_base64() 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 860 decoded = tncs_get_base64(start, &decoded_len); in tncs_process_if_tnccs() 861 if (decoded == NULL) { in tncs_process_if_tnccs() 867 tncs_send_to_imvs(tncs, type, decoded, decoded_len); in tncs_process_if_tnccs() 869 os_free(decoded); in tncs_process_if_tnccs() 907 decoded = NULL; in tncs_process_if_tnccs() [all …]
|
/freebsd/contrib/wpa/src/eap_peer/ |
H A D | tncc.c | 620 unsigned char *decoded; in tncc_get_base64() local 632 decoded = base64_decode(pos, os_strlen(pos), decoded_len); in tncc_get_base64() 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 772 decoded = tncc_get_base64(start, &decoded_len); in tncc_process_if_tnccs() 773 if (decoded == NULL) { in tncc_process_if_tnccs() 779 tncc_send_to_imcs(tncc, type, decoded, decoded_len); in tncc_process_if_tnccs() 781 os_free(decoded); in tncc_process_if_tnccs() 819 decoded = NULL; in tncc_process_if_tnccs() [all …]
|
/freebsd/sys/dev/ixl/ |
H A D | ixl_txrx.c | 613 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() 634 if (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4) { 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() [all …]
|
/freebsd/contrib/ntp/sntp/libevent/sample/ |
H A D | http-server.c | 187 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/contrib/libevent/sample/ |
H A D | http-server.c | 187 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/crypto/openssh/ |
H A D | sshkey.c | 2988 struct sshbuf *encoded = NULL, *decoded = NULL; in private2_uudecode() local 2996 (decoded = sshbuf_new()) == NULL) { in private2_uudecode() 3037 if ((r = sshbuf_b64tod(decoded, (char *)sshbuf_ptr(encoded))) != 0) in private2_uudecode() 3041 if (sshbuf_len(decoded) < sizeof(AUTH_MAGIC) || in private2_uudecode() 3042 memcmp(sshbuf_ptr(decoded), AUTH_MAGIC, sizeof(AUTH_MAGIC))) { in private2_uudecode() 3047 *decodedp = decoded; in private2_uudecode() 3048 decoded = NULL; in private2_uudecode() 3052 sshbuf_free(decoded); in private2_uudecode() 3057 private2_decrypt(struct sshbuf *decoded, const char *passphrase, in private2_decrypt() argument 3070 if (decoded == NULL || decryptedp == NULL || pubkeyp == NULL) in private2_decrypt() [all …]
|
H A D | kexsntrup761x25519.c | 172 int r, decoded; in kex_kem_sntrup761x25519_dec() local 196 decoded = crypto_kem_sntrup761_dec(kem_key, ciphertext, in kex_kem_sntrup761x25519_dec() 215 if (decoded != 0) { in kex_kem_sntrup761x25519_dec()
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | provider-decoder.pod | 36 /* 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/sys/contrib/device-tree/Bindings/spi/ |
H A D | spi-cadence.txt | 17 - is-decoded-cs : Flag to indicate whether decoder is used or not. 28 is-decoded-cs = <0>;
|
H A D | cadence-quadspi.txt | 20 - cdns,is-decoded-cs : Flag to indicate whether decoder is used or not. 53 cdns,is-decoded-cs;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
H A D | TraceIntelPTProperties.td | 9 "packet must have been decoded before triggering the verification of " 21 "packet must have been decoded before stopping the decoding of the "
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OSSL_DECODER_from_bio.pod | 33 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 D | OSSL_PARAM_allocate_from_text.pod | 59 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/contrib/bearssl/inc/ |
H A D | bearssl_x509.h | 1021 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/crypto/openssl/crypto/rsa/ |
H A D | rsa_gen.c | 484 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/sys/contrib/zstd/doc/ |
H A D | zstd_compression_format.md | 138 digesting the original (decoded) data as input, and a seed of zero. 295 in which case the frame may or may not need a dictionary to be decoded, 419 - Previous decoded data, up to a distance of `Window_Size`, 434 They can be decoded first, and then copied during [Sequence Execution], 435 or they can be decoded on the flow during [Sequence Execution]. 543 to generate the decoded literals. 587 Each of these 4 bitstreams is then decoded independently as a Huffman-Coded stream, 599 When all _sequences_ are decoded, 689 The literals length is equal to the decoded `Baseline` plus 718 The match length is equal to the decoded `Baseline` plus [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/mtd/ |
H A D | cadence-quadspi.txt | 19 - cdns,is-decoded-cs : Flag to indicate whether decoder is used or not. 52 cdns,is-decoded-cs;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunication.cpp | 1297 std::string decoded; in ExpandRLE() local 1298 decoded.reserve(packet.size()); in ExpandRLE() 1303 char char_to_repeat = decoded.back(); in ExpandRLE() 1309 decoded.push_back(char_to_repeat); in ExpandRLE() 1314 decoded.push_back(escapee); in ExpandRLE() 1316 decoded.push_back(*c); in ExpandRLE() 1319 return decoded; in ExpandRLE()
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/ |
H A D | tst.Bean.ksh.out | 6 decoded: 1 33 decoded: org.opensolaris.os.dtrace.AggregationRecord[tuple = [cat, 9, 76 …decoded: org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensolaris.o… 113 decoded: [cat, 9, 126 decoded: [1, 2, 3] 144 decoded: 154 …decoded: org.opensolaris.os.dtrace.Distribution[buckets = [org.opensolaris.os.dtrace.Distribution$… 160 …decoded: class org.opensolaris.os.dtrace.LinearDistribution[base = 1, step = 10, buckets = [org.op… 166 decoded: org.opensolaris.os.dtrace.Option[name = aggrate, value = 1s] 172 …decoded: org.opensolaris.os.dtrace.ProcessState[pid = 123456, state = UNDEAD, terminationSignal = … [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/input/ |
H A D | gpio-decoder.txt | 5 - gpios: a spec of gpios (at least two) to be decoded to a number with
|