Searched refs:decoded (Results 1 - 23 of 23) sorted by relevance

/freebsd-13-stable/sys/dev/ice/
H A Dice_common_txrx.h282 struct ice_rx_ptype_decoded decoded; local
290 decoded = ice_decode_rx_desc_ptype(ptype);
293 if (!(decoded.known && decoded.outer_ip))
296 is_ipv4 = (decoded.outer_ip == ICE_RX_PTYPE_OUTER_IP) &&
297 (decoded.outer_ip_ver == ICE_RX_PTYPE_OUTER_IPV4);
298 is_ipv6 = (decoded.outer_ip == ICE_RX_PTYPE_OUTER_IP) &&
299 (decoded.outer_ip_ver == ICE_RX_PTYPE_OUTER_IPV6);
306 switch (decoded.inner_prot) {
351 switch (decoded
386 struct ice_rx_ptype_decoded decoded; local
[all...]
/freebsd-13-stable/contrib/wpa/src/wps/
H A Dupnp_xml.c229 unsigned char *decoded; local
238 decoded = base64_decode((unsigned char *) msg, os_strlen(msg), &len);
240 if (decoded == NULL) {
245 buf = wpabuf_alloc_ext_data(decoded, len);
247 os_free(decoded);
/freebsd-13-stable/contrib/apr/encoding/
H A Dapr_escape.c171 char decoded; local
172 decoded = x2c(s + 1);
173 if ((decoded == '\0')
174 || (forbid && strchr(forbid, decoded))) {
176 *d = decoded;
180 else if (reserved && strchr(reserved, decoded)) {
187 *d = decoded;
211 char decoded; local
212 decoded = x2c(s + 1);
213 if ((decoded
[all...]
/freebsd-13-stable/contrib/libevent/sample/
H A Dhttp-server.c164 struct evhttp_uri *decoded = NULL; local
180 decoded = evhttp_uri_parse(uri);
181 if (!decoded) {
188 path = evhttp_uri_get_path(decoded);
313 if (decoded)
314 evhttp_uri_free(decoded);
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
H A Dbase64.c304 unsigned char buf[4]; /* Bytes waiting to be decoded */
313 been decoded from base64tab into the range 0..63. The four
426 (*inbuflen+len)/4*3 is the number of decoded bytes
475 svn_stringbuf_t *decoded;
480 decoded = svn_stringbuf_create_empty(db->scratch_pool);
481 decode_bytes(decoded, data, *len, db->buf, &db->buflen, &db->done);
484 declen = decoded->len;
486 err = svn_stream_write(db->output, decoded->data, &declen);
526 svn_stringbuf_t *decoded = svn_stringbuf_create_empty(pool);
531 decode_bytes(decoded, st
472 svn_stringbuf_t *decoded; local
523 svn_stringbuf_t *decoded = svn_stringbuf_create_empty(pool); local
[all...]
/freebsd-13-stable/contrib/wpa/src/eap_peer/
H A Dtncc.c620 unsigned char *decoded; local
632 decoded = base64_decode((unsigned char *) pos, os_strlen(pos),
635 if (decoded == NULL) {
639 return decoded;
691 unsigned char *decoded; local
773 decoded = tncc_get_base64(start, &decoded_len);
774 if (decoded == NULL) {
780 tncc_send_to_imcs(tncc, type, decoded, decoded_len);
782 os_free(decoded);
820 decoded
[all...]
/freebsd-13-stable/contrib/wpa/src/eap_server/
H A Dtncs.c669 unsigned char *decoded; local
681 decoded = base64_decode((unsigned char *) pos, os_strlen(pos),
684 if (decoded == NULL) {
688 return decoded;
783 unsigned char *decoded; local
861 decoded = tncs_get_base64(start, &decoded_len);
862 if (decoded == NULL) {
868 tncs_send_to_imvs(tncs, type, decoded, decoded_len);
870 os_free(decoded);
908 decoded
[all...]
/freebsd-13-stable/contrib/bearssl/inc/
H A Dbearssl_x509.h85 * ignored. The Subject Alt Name is decoded for the end-entity
446 * The decoded public key is returned. The returned pointer
454 * a decoded public key even if the chain did not end on a
620 * found and decoded, or -1 on error. Error conditions include
682 /* Buffer for currently decoded public key. */
944 unsigned char decoded; member in struct:__anon260
964 /* Buffer for decoded public key. */
1005 * \brief Obtain the decoded public key.
1019 if (ctx->decoded && ctx->err == 0) {
1042 if (!ctx->decoded) {
[all...]
/freebsd-13-stable/sys/dev/ixl/
H A Dixl_txrx.c614 struct i40e_rx_ptype_decoded decoded; local
616 decoded = decode_rx_desc_ptype(ptype);
618 if (!decoded.known)
621 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_L2)
625 if (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6) {
626 switch (decoded.inner_prot) {
635 if (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4) {
636 switch (decoded.inner_prot) {
743 struct i40e_rx_ptype_decoded decoded; local
751 decoded
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_ra_serf/
H A Dlog.c153 NULL, then it must base "base64" and CDATA will be decoded first.
163 const svn_string_t *decoded; local
176 decoded = svn_base64_decode_string(cdata, result_pool);
180 decoded = svn_string_dup(cdata, result_pool);
184 svn_hash_sets(revprops, propname, decoded);
/freebsd-13-stable/sys/cam/ctl/
H A Dctl.h195 uint64_t ctl_encode_lun(uint32_t decoded);
H A Dctl.c3720 ctl_encode_lun(uint32_t decoded) argument
3722 uint64_t l = decoded;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1367 std::string decoded; local
1368 decoded.reserve(packet.size());
1373 char char_to_repeat = decoded.back();
1379 decoded.push_back(char_to_repeat);
1384 decoded.push_back(escapee);
1386 decoded.push_back(*c);
1389 return decoded;
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java650 String decoded = getString(newobj);
651 System.out.println(" decoded: " + decoded);
654 if (!encoded.equals(decoded)) {
/freebsd-13-stable/crypto/openssh/
H A Dsshkey.c3553 struct sshbuf *encoded = NULL, *decoded = NULL; local
3566 (decoded = sshbuf_new()) == NULL ||
3608 if ((r = sshbuf_b64tod(decoded, (char *)sshbuf_ptr(encoded))) != 0)
3612 if (sshbuf_len(decoded) < sizeof(AUTH_MAGIC) ||
3613 memcmp(sshbuf_ptr(decoded), AUTH_MAGIC, sizeof(AUTH_MAGIC))) {
3618 if ((r = sshbuf_consume(decoded, sizeof(AUTH_MAGIC))) != 0 ||
3619 (r = sshbuf_get_cstring(decoded, &ciphername, NULL)) != 0 ||
3620 (r = sshbuf_get_cstring(decoded, &kdfname, NULL)) != 0 ||
3621 (r = sshbuf_froms(decoded, &kdf)) != 0 ||
3622 (r = sshbuf_get_u32(decoded,
[all...]
/freebsd-13-stable/contrib/bsnmp/snmpd/
H A Dmain.c513 goto decoded;
518 goto decoded;
521 goto decoded;
523 goto decoded;
527 decoded:
/freebsd-13-stable/sys/amd64/include/
H A Dvmm.h597 uint8_t decoded; /* set to 1 if successfully decoded */ member in struct:vie
/freebsd-13-stable/contrib/subversion/subversion/libsvn_repos/
H A Drepos.c1343 const char *decoded;
1351 err = svn_path_cstring_from_utf8(&decoded, candidate, pool);
1342 const char *decoded; local
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1313 llvm::Optional<DecodedUID> decoded = DecodeUID(uid); local
1315 if (decoded)
1316 return decoded->dwarf.GetDIE(decoded->ref);
/freebsd-13-stable/usr.sbin/bhyve/
H A Dbhyverun.c757 if (!vie->decoded) {
/freebsd-13-stable/sys/amd64/vmm/
H A Dvmm_instruction_emul.c1768 if (!vie->decoded)
1996 * Prepare a partially decoded vie for a 2nd attempt.
2939 vie->decoded = 1; /* success */
/freebsd-13-stable/contrib/bearssl/src/x509/
H A Dx509_decoder.c151 0x01, T0_INT2(offsetof(CONTEXT_NAME, decoded)), 0x00, 0x00, 0x01,
/freebsd-13-stable/sys/powerpc/aim/
H A Dmmu_radix.c6037 int *is_user, vm_offset_t *decoded)
6041 *decoded = addr;
6036 mmu_radix_decode_kernel_ptr(vm_offset_t addr, int *is_user, vm_offset_t *decoded) argument

Completed in 391 milliseconds