Home
last modified time | relevance | path

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

123456

/freebsd/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/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()
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/crypto/krb5/src/lib/krad/
H A Dt_attr.c46 const char *decoded = "accept"; in main() local
68 insist(len == strlen(decoded)); in main()
69 insist(memcmp(outbuf, decoded, len) == 0); in main()
72 in = string2data((char *)decoded); in main()
/freebsd/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/contrib/googletest/googlemock/src/
H A Dgmock-internal-utils.cc229 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 Dtncs.c669 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 Dtncc.c620 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 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()
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()
744 struct i40e_rx_ptype_decoded decoded; in ixl_rx_checksum() local
752 decoded = decode_rx_desc_ptype(ptype); in ixl_rx_checksum()
[all …]
/freebsd/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/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/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
150 This property is used to specify the structure that the decoded data is
183 be decoded, with a set of bits I<selection> that are passed in an B<int>.
186 to be decoded. For example, those bits are assumed to be the same as those
189 if the object to be decoded is supposed to contain private key components.
228 the B<OSSL_CORE_BIO> I<in> to produce decoded data or an object to be
230 metadata that was decoded from the input. This L<OSSL_PARAM(3)> array is
254 could be decoded into some sort of object that this function understands,
/freebsd/crypto/openssh/
H A Dsshkey.c2947 struct sshbuf *encoded = NULL, *decoded = NULL; in private2_uudecode() local
2955 (decoded = sshbuf_new()) == NULL) { in private2_uudecode()
2996 if ((r = sshbuf_b64tod(decoded, (char *)sshbuf_ptr(encoded))) != 0) in private2_uudecode()
3000 if (sshbuf_len(decoded) < sizeof(AUTH_MAGIC) || in private2_uudecode()
3001 memcmp(sshbuf_ptr(decoded), AUTH_MAGIC, sizeof(AUTH_MAGIC))) { in private2_uudecode()
3006 *decodedp = decoded; in private2_uudecode()
3007 decoded = NULL; in private2_uudecode()
3011 sshbuf_free(decoded); in private2_uudecode()
3016 private2_decrypt(struct sshbuf *decoded, const char *passphrase, in private2_decrypt() argument
3029 if (decoded == NULL || decryptedp == NULL || pubkeyp == NULL) in private2_decrypt()
[all …]
H A Dkexsntrup761x25519.c172 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/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 Dcadence-quadspi.txt20 - 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 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/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1067 std::string decoded; in ExpandRLE() local
1068 decoded.reserve(packet.size()); in ExpandRLE()
1071 if (decoded.empty()) in ExpandRLE()
1075 char char_to_repeat = decoded.back(); in ExpandRLE()
1083 decoded.push_back(char_to_repeat); in ExpandRLE()
1090 decoded.push_back(escapee); in ExpandRLE()
1092 decoded.push_back(*c); in ExpandRLE()
1095 return decoded; in ExpandRLE()
/freebsd/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
H A DBIO_f_base64.pod41 complete group of 4 valid base64 characters is decoded, or when an error occurs
45 returns no decoded data will typically return a negative result, rather
84 Read base64 encoded data from standard input and write the decoded
/freebsd/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/contrib/llvm-project/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()
657 auto decoded = is_16b ? pat.decode(try_rvc) : pat.decode(inst); in Decode() local
658 return DecodeResult{decoded, inst, is_16b, pat}; in Decode()
[all …]
/freebsd/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/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
H A Dtst.Bean.ksh.out6 decoded: 1
33 decoded: org.opensolaris.os.dtrace.AggregationRecord[tuple = [cat, 9,
76decoded: org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensolaris.o…
113 decoded: [cat, 9,
126 decoded: [1, 2, 3]
144 decoded:
154decoded: org.opensolaris.os.dtrace.Distribution[buckets = [org.opensolaris.os.dtrace.Distribution$…
160decoded: class org.opensolaris.os.dtrace.LinearDistribution[base = 1, step = 10, buckets = [org.op…
166 decoded: org.opensolaris.os.dtrace.Option[name = aggrate, value = 1s]
172decoded: org.opensolaris.os.dtrace.ProcessState[pid = 123456, state = UNDEAD, terminationSignal = …
[all …]

123456