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

/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/tools/net/ynl/lib/
H A Dynl.py579 decoded = self._decode_struct(attr.raw, attr_spec.struct_name)
581 decoded = attr.as_c_array(attr_spec.sub_type)
583 decoded = attr.as_bin()
585 decoded = self._formatted_string(decoded, attr_spec.display_hint)
586 return decoded
589 decoded = []
596 decoded.append({ item.type: subattrs })
597 return decoded
600 decoded
[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/drivers/net/ethernet/intel/ice/
H A Dice_txrx_lib.c51 struct ice_rx_ptype_decoded decoded = ice_decode_rx_desc_ptype(ptype); local
53 if (!decoded.known)
55 if (decoded.payload_layer == ICE_RX_PTYPE_PAYLOAD_LAYER_PAY4)
57 if (decoded.payload_layer == ICE_RX_PTYPE_PAYLOAD_LAYER_PAY3)
59 if (decoded.outer_ip == ICE_RX_PTYPE_OUTER_L2)
109 * @ptype: the packet type decoded by hardware
117 struct ice_rx_ptype_decoded decoded; local
124 decoded = ice_decode_rx_desc_ptype(ptype);
134 /* check if HW has decoded the packet and checksum */
138 if (!(decoded
[all...]
/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",
/linux-master/drivers/net/ethernet/intel/idpf/
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...]
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_txrx.h277 /* Checksum offload bits decoded from the receive descriptor. */
991 enum pkt_hash_types idpf_ptype_to_htype(const struct idpf_rx_ptype_decoded *decoded);
/linux-master/drivers/net/ethernet/intel/iavf/
H A Diavf_txrx.c985 struct iavf_rx_ptype_decoded decoded; local
995 decoded = decode_rx_desc_ptype(ptype);
1010 if (!(decoded.known && decoded.outer_ip))
1013 ipv4 = (decoded.outer_ip == IAVF_RX_PTYPE_OUTER_IP) &&
1014 (decoded.outer_ip_ver == IAVF_RX_PTYPE_OUTER_IPV4);
1015 ipv6 = (decoded.outer_ip == IAVF_RX_PTYPE_OUTER_IP) &&
1016 (decoded.outer_ip_ver == IAVF_RX_PTYPE_OUTER_IPV6);
1041 switch (decoded.inner_prot) {
1065 struct iavf_rx_ptype_decoded decoded local
[all...]
/linux-master/net/batman-adv/
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...]
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
/linux-master/drivers/net/ipa/
H A Dipa_qmi.c182 const void *decoded)
211 const void *decoded)
258 struct qmi_txn *txn, const void *decoded)
179 ipa_server_indication_register(struct qmi_handle *qmi, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
208 ipa_server_driver_init_complete(struct qmi_handle *qmi, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
256 ipa_client_init_driver(struct qmi_handle *qmi, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
/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/drivers/net/ethernet/intel/i40e/
H A Di40e_txrx.c1744 struct i40e_rx_ptype_decoded decoded; local
1754 decoded = decode_rx_desc_ptype(ptype);
1769 if (!(decoded.known && decoded.outer_ip))
1772 ipv4 = (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP) &&
1773 (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4);
1774 ipv6 = (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP) &&
1775 (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6);
1803 if (decoded.tunnel_type >= I40E_RX_PTYPE_TUNNEL_IP_GRENAT)
1807 switch (decoded
1831 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(ptype); local
[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/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/wireless/ath/ath12k/
H A Dqmi.c3138 const void *decoded)
3150 const void *decoded)
3135 ath12k_qmi_msg_mem_ready_cb(struct qmi_handle *qmi_hdl, struct sockaddr_qrtr *sq, struct qmi_txn *txn, const void *decoded) argument
3147 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/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;

Completed in 461 milliseconds