Searched refs:decoded (Results 1 - 18 of 18) sorted by last modified time

/linux-master/tools/net/ynl/lib/
H A Dynl.py622 decoded = self._decode_struct(attr.raw, attr_spec.struct_name)
624 decoded = attr.as_c_array(attr_spec.sub_type)
626 decoded = attr.as_bin()
628 decoded = self._formatted_string(decoded, attr_spec.display_hint)
629 return decoded
632 decoded = []
640 decoded.append({ item.type: subattrs })
645 decoded.append(subattrs)
650 decoded
[all...]
/linux-master/mm/
H A Dslub.c495 void *decoded; local
498 decoded = (void *)(ptr.v ^ s->random ^ swab(ptr_addr));
500 decoded = (void *)ptr.v;
502 return decoded;
/linux-master/drivers/net/wireless/ath/ath12k/
H A Dqmi.c3195 const void *decoded)
3207 const void *decoded)
3192 ath12k_qmi_msg_mem_ready_cb(struct qmi_handle *qmi_hdl, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
3204 ath12k_qmi_msg_fw_ready_cb(struct qmi_handle *qmi_hdl, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
/linux-master/drivers/net/wireless/ath/ath11k/
H A Dqmi.c3059 const void *decoded)
3071 const void *decoded)
3089 const void *decoded)
3103 const void *decoded)
3056 ath11k_qmi_msg_mem_ready_cb(struct qmi_handle *qmi_hdl, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
3068 ath11k_qmi_msg_fw_ready_cb(struct qmi_handle *qmi_hdl, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
3086 ath11k_qmi_msg_cold_boot_cal_done_cb(struct qmi_handle *qmi_hdl, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
3100 ath11k_qmi_msg_fw_init_done_cb(struct qmi_handle *qmi_hdl, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
/linux-master/drivers/net/ipa/
H A Dipa_qmi.c178 const void *decoded)
207 const void *decoded)
254 struct qmi_txn *txn, const void *decoded)
175 ipa_server_indication_register(struct qmi_handle *qmi, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
204 ipa_server_driver_init_complete(struct qmi_handle *qmi, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
252 ipa_client_init_driver(struct qmi_handle *qmi, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
/linux-master/drivers/net/ethernet/intel/idpf/
H A Didpf_txrx.h279 /* Checksum offload bits decoded from the receive descriptor. */
993 enum pkt_hash_types idpf_ptype_to_htype(const struct idpf_rx_ptype_decoded *decoded);
H A Didpf_txrx.c2709 * @decoded: Decoded Rx packet type related fields
2715 enum pkt_hash_types idpf_ptype_to_htype(const struct idpf_rx_ptype_decoded *decoded) argument
2717 if (!decoded->known)
2719 if (decoded->payload_layer == IDPF_RX_PTYPE_PAYLOAD_LAYER_PAY2 &&
2720 decoded->inner_prot)
2722 if (decoded->payload_layer == IDPF_RX_PTYPE_PAYLOAD_LAYER_PAY2 &&
2723 decoded->outer_ip)
2725 if (decoded->outer_ip == IDPF_RX_PTYPE_OUTER_L2)
2736 * @decoded: Decoded Rx packet type related fields
2740 struct idpf_rx_ptype_decoded *decoded)
2738 idpf_rx_hash(struct idpf_queue *rxq, struct sk_buff *skb, struct virtchnl2_rx_flex_desc_adv_nic_3 *rx_desc, struct idpf_rx_ptype_decoded *decoded) argument
2763 idpf_rx_csum(struct idpf_queue *rxq, struct sk_buff *skb, struct idpf_rx_csum_decoded *csum_bits, struct idpf_rx_ptype_decoded *decoded) argument
2863 idpf_rx_rsc(struct idpf_queue *rxq, struct sk_buff *skb, struct virtchnl2_rx_flex_desc_adv_nic_3 *rx_desc, struct idpf_rx_ptype_decoded *decoded) argument
2938 struct idpf_rx_ptype_decoded decoded; local
[all...]
H A Didpf_singleq_txrx.c638 * @ptype: the packet type decoded by hardware
646 struct idpf_rx_ptype_decoded decoded; local
653 /* check if HW has decoded the packet and checksum */
657 decoded = rxq->vport->rx_ptype_lkup[ptype];
658 if (unlikely(!(decoded.known && decoded.outer_ip)))
661 ipv4 = IDPF_RX_PTYPE_TO_IPV(&decoded, IDPF_RX_PTYPE_OUTER_IPV4);
662 ipv6 = IDPF_RX_PTYPE_TO_IPV(&decoded, IDPF_RX_PTYPE_OUTER_IPV6);
693 if (decoded.tunnel_type >= IDPF_RX_PTYPE_TUNNEL_IP_GRENAT)
697 switch (decoded
804 idpf_rx_singleq_base_hash(struct idpf_queue *rx_q, struct sk_buff *skb, union virtchnl2_rx_desc *rx_desc, struct idpf_rx_ptype_decoded *decoded) argument
834 idpf_rx_singleq_flex_hash(struct idpf_queue *rx_q, struct sk_buff *skb, union virtchnl2_rx_desc *rx_desc, struct idpf_rx_ptype_decoded *decoded) argument
865 struct idpf_rx_ptype_decoded decoded = local
[all...]
/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_txrx_lib.c71 struct libeth_rx_pt decoded; local
74 decoded = libie_rx_pt_parse(rx_ptype);
75 if (!libeth_rx_pt_has_hash(rx_ring->netdev, decoded))
80 libeth_rx_pt_set_hash(skb, hash, decoded);
88 * @ptype: the packet type decoded by hardware
96 struct libeth_rx_pt decoded; local
103 decoded = libie_rx_pt_parse(ptype);
104 if (!libeth_rx_pt_has_checksum(ring->netdev, decoded))
110 /* check if HW has decoded the packet and checksum */
114 ipv4 = libeth_rx_pt_get_ip_ver(decoded)
[all...]
/linux-master/drivers/net/ethernet/intel/iavf/
H A Diavf_txrx.c908 struct libeth_rx_pt decoded; local
919 decoded = libie_rx_pt_parse(ptype);
920 if (!libeth_rx_pt_has_checksum(vsi->netdev, decoded))
930 ipv4 = libeth_rx_pt_get_ip_ver(decoded) == LIBETH_RX_PT_OUTER_IPV4;
931 ipv6 = libeth_rx_pt_get_ip_ver(decoded) == LIBETH_RX_PT_OUTER_IPV6;
974 struct libeth_rx_pt decoded; local
980 decoded = libie_rx_pt_parse(rx_ptype);
981 if (!libeth_rx_pt_has_hash(ring->netdev, decoded))
986 libeth_rx_pt_set_hash(skb, hash, decoded);
995 * @rx_ptype: the packet type decoded b
[all...]
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_txrx.c1747 struct libeth_rx_pt decoded; local
1758 decoded = libie_rx_pt_parse(ptype);
1759 if (!libeth_rx_pt_has_checksum(vsi->netdev, decoded))
1769 ipv4 = libeth_rx_pt_get_ip_ver(decoded) == LIBETH_RX_PT_OUTER_IPV4;
1770 ipv6 = libeth_rx_pt_get_ip_ver(decoded) == LIBETH_RX_PT_OUTER_IPV6;
1798 if (decoded.tunnel_type >= LIBETH_RX_PT_TUNNEL_IP_GRENAT)
1820 struct libeth_rx_pt decoded; local
1826 decoded = libie_rx_pt_parse(rx_ptype);
1827 if (!libeth_rx_pt_has_hash(ring->netdev, decoded))
1832 libeth_rx_pt_set_hash(skb, hash, decoded);
[all...]
/linux-master/drivers/md/dm-vdo/
H A Dnumeric.h18 static inline void decode_s64_le(const u8 *buffer, size_t *offset, s64 *decoded) argument
20 *decoded = get_unaligned_le64(buffer + *offset);
30 static inline void decode_u64_le(const u8 *buffer, size_t *offset, u64 *decoded) argument
32 *decoded = get_unaligned_le64(buffer + *offset);
42 static inline void decode_s32_le(const u8 *buffer, size_t *offset, s32 *decoded) argument
44 *decoded = get_unaligned_le32(buffer + *offset);
54 static inline void decode_u32_le(const u8 *buffer, size_t *offset, u32 *decoded) argument
56 *decoded = get_unaligned_le32(buffer + *offset);
66 static inline void decode_u16_le(const u8 *buffer, size_t *offset, u16 *decoded) argument
68 *decoded
[all...]
/linux-master/drivers/md/dm-vdo/indexer/
H A Dvolume-index.c836 "%zu bytes decoded of %zu expected", offset,
871 u8 decoded[sizeof(u64)]; local
873 result = uds_read_from_buffered_reader(readers[i], decoded,
881 get_unaligned_le64(decoded);
928 "%zu bytes decoded of %zu expected", offset,
/linux-master/net/batman-adv/
H A Dtypes.h984 * @BATADV_CNT_NC_DECODE: received and nc-decoded traffic packet counter
989 * @BATADV_CNT_NC_DECODE_BYTES: received and nc-decoded traffic bytes
1001 * @BATADV_CNT_NC_SNIFFED: counter for nc-decoded packets received in
2129 * @decoded: Marks a skb as decoded, which is checked when searching for
2132 unsigned char decoded:1; member in struct:batadv_skb_cb
H A Dnetwork-coding.c1169 if (BATADV_SKB_CB(skb_src)->decoded &&
1170 BATADV_SKB_CB(skb_dest)->decoded) {
1176 } else if (!BATADV_SKB_CB(skb_src)->decoded &&
1177 !BATADV_SKB_CB(skb_dest)->decoded) {
1183 } else if (BATADV_SKB_CB(skb_src)->decoded &&
1184 !BATADV_SKB_CB(skb_dest)->decoded) {
1192 } else if (!BATADV_SKB_CB(skb_src)->decoded &&
1193 BATADV_SKB_CB(skb_dest)->decoded) {
1222 * batadv_nc_skb_coding_possible() - true if a decoded skb is available at dst.
1236 * Return: true if coding of a decoded packe
[all...]
/linux-master/arch/arm64/kernel/probes/
H A Ddecode-insn.c139 enum probe_insn decoded; local
160 decoded = arm_probe_decode_insn(insn, &asi->api);
162 if (decoded != INSN_REJECTED && scan_end)
166 return decoded;
/linux-master/include/linux/soc/qcom/
H A Dqmi.h96 * struct qmi_response_type_v01 - common response header (decoded)
185 * @decoded_size: size of the decoded object
186 * @fn: function to invoke as the message is decoded
196 struct qmi_txn *txn, const void *decoded);
/linux-master/tools/testing/selftests/ir/
H A Dir_loopback.c7 // will send this IR to the receiver side, where we try to read the decoded
181 bool decoded = true; local
187 ksft_test_result_error("no scancode decoded: %m\n");
188 decoded = false;
192 if (!decoded)
196 ksft_test_result_error("decoded protocol is different: %d\n",
200 ksft_test_result_error("decoded scancode is different: %llx\n",

Completed in 292 milliseconds