| /third_party/lwip/src/include/lwip/prot/ |
| D | ip4.h | 106 #define IPH_V(hdr) ((hdr)->_v_hl >> 4) argument 107 #define IPH_HL(hdr) ((hdr)->_v_hl & 0x0f) argument 108 #define IPH_HL_BYTES(hdr) ((u8_t)(IPH_HL(hdr) * 4)) argument 109 #define IPH_TOS(hdr) ((hdr)->_tos) argument 110 #define IPH_LEN(hdr) ((hdr)->_len) argument 111 #define IPH_ID(hdr) ((hdr)->_id) argument 112 #define IPH_OFFSET(hdr) ((hdr)->_offset) argument 113 #define IPH_OFFSET_BYTES(hdr) ((u16_t)((lwip_ntohs(IPH_OFFSET(hdr)) & IP_OFFMASK) * 8U)) argument 114 #define IPH_TTL(hdr) ((hdr)->_ttl) argument 115 #define IPH_PROTO(hdr) ((hdr)->_proto) argument [all …]
|
| D | ip6.h | 99 #define IP6H_V(hdr) ((lwip_ntohl((hdr)->_v_tc_fl) >> 28) & 0x0f) argument 100 #define IP6H_TC(hdr) ((lwip_ntohl((hdr)->_v_tc_fl) >> 20) & 0xff) argument 101 #define IP6H_FL(hdr) (lwip_ntohl((hdr)->_v_tc_fl) & 0x000fffff) argument 102 #define IP6H_PLEN(hdr) (lwip_ntohs((hdr)->_plen)) argument 103 #define IP6H_NEXTH(hdr) ((hdr)->_nexth) argument 104 #define IP6H_NEXTH_P(hdr) ((u8_t *)(hdr) + 6) argument 105 #define IP6H_HOPLIM(hdr) ((hdr)->_hoplim) argument 106 #define IP6H_VTCFL_SET(hdr, v, tc, fl) (hdr)->_v_tc_fl = (lwip_htonl((((u32_t)(v)) << 28) | (((u32_… argument 107 #define IP6H_PLEN_SET(hdr, plen) (hdr)->_plen = lwip_htons(plen) argument 108 #define IP6H_NEXTH_SET(hdr, nexth) (hdr)->_nexth = (nexth) argument [all …]
|
| D | icmp.h | 82 #define ICMPH_TYPE(hdr) ((hdr)->type) argument 83 #define ICMPH_CODE(hdr) ((hdr)->code) argument 84 #define ICMPH_TYPE_SET(hdr, t) ((hdr)->type = (t)) argument 85 #define ICMPH_CODE_SET(hdr, c) ((hdr)->code = (c)) argument
|
| /third_party/openssl/crypto/cmp/ |
| D | cmp_hdr.c | 23 int ossl_cmp_hdr_set_pvno(OSSL_CMP_PKIHEADER *hdr, int pvno) in ossl_cmp_hdr_set_pvno() 30 int ossl_cmp_hdr_get_pvno(const OSSL_CMP_PKIHEADER *hdr) in ossl_cmp_hdr_get_pvno() 41 int ossl_cmp_hdr_get_protection_nid(const OSSL_CMP_PKIHEADER *hdr) in ossl_cmp_hdr_get_protection_nid() 50 OSSL_CMP_PKIHEADER *hdr) in OSSL_CMP_HDR_get0_transactionID() 59 ASN1_OCTET_STRING *ossl_cmp_hdr_get0_senderNonce(const OSSL_CMP_PKIHEADER *hdr) in ossl_cmp_hdr_get0_senderNonce() 66 ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const OSSL_CMP_PKIHEADER *hdr) in OSSL_CMP_HDR_get0_recipNonce() 115 int ossl_cmp_hdr_set1_sender(OSSL_CMP_PKIHEADER *hdr, const X509_NAME *nm) in ossl_cmp_hdr_set1_sender() 122 int ossl_cmp_hdr_set1_recipient(OSSL_CMP_PKIHEADER *hdr, const X509_NAME *nm) in ossl_cmp_hdr_set1_recipient() 129 int ossl_cmp_hdr_update_messageTime(OSSL_CMP_PKIHEADER *hdr) in ossl_cmp_hdr_update_messageTime() 153 int ossl_cmp_hdr_set1_senderKID(OSSL_CMP_PKIHEADER *hdr, in ossl_cmp_hdr_set1_senderKID() [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
| D | asn1.h | 88 static inline bool asn1_is_oid(const struct asn1_hdr *hdr) in asn1_is_oid() 94 static inline bool asn1_is_boolean(const struct asn1_hdr *hdr) in asn1_is_boolean() 100 static inline bool asn1_is_integer(const struct asn1_hdr *hdr) in asn1_is_integer() 106 static inline bool asn1_is_enumerated(const struct asn1_hdr *hdr) in asn1_is_enumerated() 112 static inline bool asn1_is_sequence(const struct asn1_hdr *hdr) in asn1_is_sequence() 118 static inline bool asn1_is_set(const struct asn1_hdr *hdr) in asn1_is_set() 124 static inline bool asn1_is_octetstring(const struct asn1_hdr *hdr) in asn1_is_octetstring() 130 static inline bool asn1_is_bitstring(const struct asn1_hdr *hdr) in asn1_is_bitstring() 136 static inline bool asn1_is_utctime(const struct asn1_hdr *hdr) in asn1_is_utctime() 142 static inline bool asn1_is_generalizedtime(const struct asn1_hdr *hdr) in asn1_is_generalizedtime() [all …]
|
| D | asn1.c | 106 static int asn1_valid_der_boolean(struct asn1_hdr *hdr) in asn1_valid_der_boolean() 126 static int asn1_valid_der(struct asn1_hdr *hdr) in asn1_valid_der() 171 int asn1_get_next(const u8 *buf, size_t len, struct asn1_hdr *hdr) in asn1_get_next() 276 void asn1_print_hdr(const struct asn1_hdr *hdr, const char *title) in asn1_print_hdr() 283 void asn1_unexpected(const struct asn1_hdr *hdr, const char *title) in asn1_unexpected() 337 struct asn1_hdr hdr; in asn1_get_oid() local 435 struct asn1_hdr hdr; in asn1_get_integer() local 466 int asn1_get_sequence(const u8 *buf, size_t len, struct asn1_hdr *hdr, in asn1_get_sequence() 484 struct asn1_hdr hdr; in asn1_get_alg_id() local
|
| D | x509v3.c | 185 struct asn1_hdr hdr; in x509_parse_algorithm_identifier() local 220 struct asn1_hdr hdr; in x509_parse_public_key() local 288 struct asn1_hdr hdr; in x509_parse_name() local 689 struct asn1_hdr hdr; in x509_parse_validity() local 768 struct asn1_hdr hdr; in x509_parse_ext_key_usage() local 801 struct asn1_hdr hdr; in x509_parse_ext_basic_constraints() local 974 struct asn1_hdr hdr; in x509_parse_ext_alt_name() local 1052 struct asn1_hdr hdr; in x509_parse_ext_subject_alt_name() local 1076 struct asn1_hdr hdr; in x509_parse_ext_issuer_alt_name() local 1149 struct asn1_hdr hdr; in x509_parse_ext_certificate_policies() local [all …]
|
| D | tlsv1_cred.c | 446 struct asn1_hdr hdr; in pkcs12_certbag() local 517 struct asn1_hdr hdr; in pkcs12_parse_attr_friendly_name() local 542 struct asn1_hdr hdr; in pkcs12_parse_attr_local_key_id() local 568 struct asn1_hdr hdr; in pkcs12_parse_attr() local 609 struct asn1_hdr hdr; in pkcs12_safebag() local 682 struct asn1_hdr hdr; in pkcs12_safecontents() local 722 struct asn1_hdr hdr; in pkcs12_parse_content_data() local 741 struct asn1_hdr hdr; in pkcs12_parse_content_enc_data() local 851 struct asn1_hdr hdr; in pkcs12_parse_content() local 887 struct asn1_hdr hdr; in pkcs12_parse() local [all …]
|
| D | pkcs8.c | 21 struct asn1_hdr hdr; in pkcs8_key_import() local 113 struct asn1_hdr hdr; in pkcs8_enc_key_import() local
|
| /third_party/mesa3d/src/freedreno/drm/virtio/ |
| D | msm_proto.h | 110 struct msm_ccmd_req hdr; member 119 struct msm_ccmd_req hdr; member 127 struct msm_ccmd_rsp hdr; member 151 struct msm_ccmd_req hdr; member 167 struct msm_ccmd_req hdr; member 184 struct msm_ccmd_req hdr; member 192 struct msm_ccmd_rsp hdr; member 205 struct msm_ccmd_req hdr; member 240 struct msm_ccmd_req hdr; member 273 struct msm_ccmd_req hdr; member [all …]
|
| /third_party/mesa3d/src/util/ |
| D | u_debug_memory.c | 105 data_from_header(struct debug_memory_header *hdr) in data_from_header() 114 footer_from_header(struct debug_memory_header *hdr) in footer_from_header() 127 struct debug_memory_header *hdr; in debug_malloc() local 167 struct debug_memory_header *hdr; in debug_free() local 309 struct debug_memory_header *hdr; in debug_memory_end() local 360 struct debug_memory_header *hdr; in debug_memory_tag() local 381 struct debug_memory_header *hdr; in debug_memory_check_block() local 416 struct debug_memory_header *hdr; in debug_memory_check() local
|
| /third_party/pulseaudio/src/modules/rtp/ |
| D | headerlist.c | 44 static void header_free(struct header *hdr) { in header_free() 61 struct header *hdr; in pa_headerlist_puts() local 84 struct header *hdr; in pa_headerlist_putsappend() local 109 struct header *hdr; in pa_headerlist_gets() local 137 struct header *hdr; in pa_headerlist_iterate() local
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_common/ |
| D | eap_common.c | 27 const struct eap_hdr *hdr; in eap_hdr_len_valid() local 69 const struct eap_hdr *hdr; in eap_hdr_validate() local 132 struct eap_hdr *hdr; in eap_msg_alloc() local 169 struct eap_hdr *hdr; in eap_update_len() local
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/ |
| D | eap_common.c | 27 const struct eap_hdr *hdr; in eap_hdr_len_valid() local 69 const struct eap_hdr *hdr; in eap_hdr_validate() local 132 struct eap_hdr *hdr; in eap_msg_alloc() local 169 struct eap_hdr *hdr; in eap_update_len() local
|
| /third_party/backends/backend/ |
| D | kvs1025_low.c | 245 KV_CMD_HEADER hdr; in CMD_test_unit_ready() local 270 KV_CMD_HEADER hdr; in CMD_set_timeout() local 296 KV_CMD_HEADER hdr; in CMD_read_support_info() local 385 KV_CMD_HEADER hdr; in CMD_scan() local 416 KV_CMD_HEADER hdr; in CMD_set_window() local 449 KV_CMD_HEADER hdr; in CMD_reset_window() local 471 KV_CMD_HEADER hdr; in CMD_get_buff_status() local 546 KV_CMD_HEADER hdr; in CMD_read_pic_elements() local 604 KV_CMD_HEADER hdr; in CMD_read_image() local 648 KV_CMD_HEADER hdr; in CMD_get_document_existanse() local [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
| D | asn1.c | 25 static int asn1_valid_der_boolean(struct asn1_hdr *hdr) in asn1_valid_der_boolean() 45 static int asn1_valid_der(struct asn1_hdr *hdr) in asn1_valid_der() 55 int asn1_get_next(const u8 *buf, size_t len, struct asn1_hdr *hdr) in asn1_get_next() 176 struct asn1_hdr hdr; in asn1_get_oid() local
|
| D | x509v3.c | 185 struct asn1_hdr hdr; in x509_parse_algorithm_identifier() local 223 struct asn1_hdr hdr; in x509_parse_public_key() local 294 struct asn1_hdr hdr; in x509_parse_name() local 695 struct asn1_hdr hdr; in x509_parse_validity() local 778 struct asn1_hdr hdr; in x509_parse_ext_key_usage() local 815 struct asn1_hdr hdr; in x509_parse_ext_basic_constraints() local 994 struct asn1_hdr hdr; in x509_parse_ext_alt_name() local 1072 struct asn1_hdr hdr; in x509_parse_ext_subject_alt_name() local 1099 struct asn1_hdr hdr; in x509_parse_ext_issuer_alt_name() local 1175 struct asn1_hdr hdr; in x509_parse_ext_ext_key_usage() local [all …]
|
| D | tlsv1_cred.c | 446 struct asn1_hdr hdr; in pkcs12_certbag() local 525 struct asn1_hdr hdr; in pkcs12_parse_attr_friendly_name() local 552 struct asn1_hdr hdr; in pkcs12_parse_attr_local_key_id() local 580 struct asn1_hdr hdr; in pkcs12_parse_attr() local 625 struct asn1_hdr hdr; in pkcs12_safebag() local 704 struct asn1_hdr hdr; in pkcs12_safecontents() local 749 struct asn1_hdr hdr; in pkcs12_parse_content_data() local 771 struct asn1_hdr hdr; in pkcs12_parse_content_enc_data() local 890 struct asn1_hdr hdr; in pkcs12_parse_content() local 928 struct asn1_hdr hdr; in pkcs12_parse() local [all …]
|
| /third_party/ltp/lib/ |
| D | tst_capability.c | 14 int tst_capget(struct tst_cap_user_header *hdr, in tst_capget() 20 int tst_capset(struct tst_cap_user_header *hdr, in tst_capset() 48 struct tst_cap_user_header hdr = { in tst_cap_action() local
|
| /third_party/ffmpeg/libavcodec/ |
| D | ac3_parser.c | 57 int ff_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr) in ff_ac3_parse_header() 162 AC3HeaderInfo *hdr; in avpriv_ac3_parse_header() local 185 AC3HeaderInfo hdr; in av_ac3_parse_header() local 207 AC3HeaderInfo hdr; in ac3_sync() local
|
| /third_party/mesa3d/src/freedreno/afuc/ |
| D | afuc.h | 150 uint32_t hdr : 6; member 156 uint32_t hdr : 6; member 165 uint32_t hdr : 6; member 182 uint32_t hdr : 6; member 188 uint32_t hdr : 6; member 192 uint32_t hdr : 6; member 197 uint32_t hdr : 6; member 201 uint32_t hdr : 6; member
|
| /third_party/FreeBSD/sys/dev/usb/net/ |
| D | if_urndis.c | 181 } hdr; in urndis_attach() member 436 struct urndis_comp_hdr *hdr; in urndis_ctrl_recv() local 460 urndis_ctrl_handle(struct urndis_softc *sc, struct urndis_comp_hdr *hdr, in urndis_ctrl_handle() 502 const struct urndis_comp_hdr *hdr) in urndis_ctrl_handle_init() 545 const struct urndis_comp_hdr *hdr, const void **buf, uint16_t *bufsz) in urndis_ctrl_handle_query() 593 const struct urndis_comp_hdr *hdr) in urndis_ctrl_handle_reset() 614 struct urndis_set_req hdr; in urndis_ctrl_handle_reset() member 635 struct urndis_comp_hdr *hdr; in urndis_ctrl_init() local 701 struct urndis_comp_hdr *hdr; in urndis_ctrl_query() local 747 struct urndis_comp_hdr *hdr; in urndis_ctrl_set() local
|
| /third_party/alsa-lib/src/topology/ |
| D | decoder.c | 22 struct snd_soc_tplg_hdr *hdr, in tplg_decode_template() 45 struct snd_soc_tplg_hdr *hdr; in snd_tplg_decode() local
|
| /third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
| D | vid_dec_av1.c | 383 struct av1_uncompressed_header_obu *hdr = &(priv->codec_data.av1.uncompressed_header); in superres_params() local 405 struct av1_uncompressed_header_obu *hdr = &(priv->codec_data.av1.uncompressed_header); in compute_image_size() local 414 struct av1_uncompressed_header_obu *hdr = &(priv->codec_data.av1.uncompressed_header); in frame_size() local 434 struct av1_uncompressed_header_obu *hdr = &(priv->codec_data.av1.uncompressed_header); in render_size() local 469 struct av1_uncompressed_header_obu *hdr = &(priv->codec_data.av1.uncompressed_header); in find_latest_backward() local 489 struct av1_uncompressed_header_obu *hdr = &(priv->codec_data.av1.uncompressed_header); in find_earliest_backward() local 509 struct av1_uncompressed_header_obu *hdr = &(priv->codec_data.av1.uncompressed_header); in find_latest_forward() local 530 struct av1_uncompressed_header_obu *hdr = &(priv->codec_data.av1.uncompressed_header); in set_frame_refs() local 602 struct av1_uncompressed_header_obu *hdr = &(priv->codec_data.av1.uncompressed_header); in frame_size_with_refs() local 643 struct av1_uncompressed_header_obu *hdr = &(priv->codec_data.av1.uncompressed_header); in tile_info() local [all …]
|
| /third_party/mesa3d/src/mesa/main/ |
| D | program_binary.c | 81 struct program_binary_header *hdr = binary; in write_program_binary() local 104 simple_header_checks(const struct program_binary_header *hdr, unsigned length) in simple_header_checks() 116 check_crc32(const struct program_binary_header *hdr, unsigned length) in check_crc32() 134 const struct program_binary_header *hdr, in is_program_binary_valid() 166 const struct program_binary_header *hdr = binary; in get_program_binary_payload() local
|