/linux-6.8/tools/net/ynl/lib/ |
D | ynl.py | 157 decoded = self.raw[offset : offset + m['len']] 161 [ decoded ] = format.unpack_from(self.raw, offset) 164 decoded = self.formatted_string(decoded, m.display_hint) 165 value[m.name] = decoded 507 decoded = attr.as_struct(members) 510 decoded[m.name] = self._decode_enum(decoded[m.name], m) 512 decoded = attr.as_c_array(attr_spec.sub_type) 514 decoded = attr.as_bin() 516 decoded = NlAttr.formatted_string(decoded, attr_spec.display_hint) 517 return decoded [all …]
|
/linux-6.8/Documentation/userspace-api/media/v4l/ |
D | dev-stateless-decoder.rst | 10 between processed frames. This means that each frame is decoded independently 15 has to do is to provide the raw encoded stream and dequeue decoded frames in 29 Depending on the encoded formats supported by the decoder, a single decoded 100 destination buffers parsed/decoded from the bytestream. 110 frame buffer resolution for the decoded frames. 113 pixel format for decoded frames. 162 frame buffer resolution of the decoded stream; typically unchanged from 201 for the stream to be properly decoded (taking e.g. reference frames 239 controls relevant to the format being decoded. 246 If there is a possibility that the decoded frame will require one or more [all …]
|
D | dev-decoder.rst | 51 decoded frames; for encoders, the queue of buffers containing an encoded 82 the order in which frames are decoded; may differ from display order if the 96 Decoded Picture Buffer; an H.264/HEVC term for a buffer that stores a decoded 107 an encoded frame that does not reference frames decoded earlier, i.e. 108 can be decoded fully on its own. 369 initialization sequence completes and the frame is decoded. 398 No decoded frames are produced during this phase. 406 destination buffers parsed/decoded from the bytestream. 416 frame buffer resolution for the decoded frames. 419 pixel format for decoded frames. [all …]
|
/linux-6.8/drivers/net/ethernet/intel/ice/ |
D | ice_txrx_lib.c | 51 struct ice_rx_ptype_decoded decoded = ice_decode_rx_desc_ptype(ptype); in ice_ptype_to_htype() local 53 if (!decoded.known) in ice_ptype_to_htype() 55 if (decoded.payload_layer == ICE_RX_PTYPE_PAYLOAD_LAYER_PAY4) in ice_ptype_to_htype() 57 if (decoded.payload_layer == ICE_RX_PTYPE_PAYLOAD_LAYER_PAY3) in ice_ptype_to_htype() 59 if (decoded.outer_ip == ICE_RX_PTYPE_OUTER_L2) in ice_ptype_to_htype() 109 * @ptype: the packet type decoded by hardware 117 struct ice_rx_ptype_decoded decoded; in ice_rx_csum() local 124 decoded = ice_decode_rx_desc_ptype(ptype); in ice_rx_csum() 134 /* check if HW has decoded the packet and checksum */ in ice_rx_csum() 138 if (!(decoded.known && decoded.outer_ip)) in ice_rx_csum() [all …]
|
/linux-6.8/drivers/media/platform/st/sti/delta/ |
D | delta.h | 54 * @crop: cropping window inside decoded frame (1920x1080@0,0 112 * struct delta_frameinfo - information about decoded frame 187 #define DELTA_FRAME_DEC 0x04 /* contains decoded content */ 231 * @pixelformat: pixel format of decoded frame that this decoder support 241 * @get_frameinfo: get decoded frame related infos, see below 242 * @set_frameinfo: (optional) set decoded frame related infos, see below 245 * @get_frame: get the next decoded frame available, see below 289 * in this case the next bitstream access unit must be decoded till 296 * get_frameinfo() - get decoded frame related infos 306 * set_frameinfo() - set decoded frame related infos [all …]
|
/linux-6.8/tools/perf/pmu-events/arch/x86/westmereex/ |
D | frontend.json | 3 "BriefDescription": "Instructions decoded", 5 "EventName": "MACRO_INSTS.DECODED", 10 "BriefDescription": "Macro-fused instructions decoded", 17 "BriefDescription": "Two Uop instructions decoded",
|
/linux-6.8/tools/perf/pmu-events/arch/x86/westmereep-sp/ |
D | frontend.json | 3 "BriefDescription": "Instructions decoded", 5 "EventName": "MACRO_INSTS.DECODED", 10 "BriefDescription": "Macro-fused instructions decoded", 17 "BriefDescription": "Two Uop instructions decoded",
|
/linux-6.8/tools/perf/pmu-events/arch/x86/westmereep-dp/ |
D | frontend.json | 3 "BriefDescription": "Instructions decoded", 5 "EventName": "MACRO_INSTS.DECODED", 10 "BriefDescription": "Macro-fused instructions decoded", 17 "BriefDescription": "Two Uop instructions decoded",
|
/linux-6.8/tools/perf/pmu-events/arch/x86/nehalemex/ |
D | frontend.json | 3 "BriefDescription": "Instructions decoded", 5 "EventName": "MACRO_INSTS.DECODED", 10 "BriefDescription": "Macro-fused instructions decoded", 17 "BriefDescription": "Two Uop instructions decoded",
|
/linux-6.8/tools/perf/pmu-events/arch/x86/nehalemep/ |
D | frontend.json | 3 "BriefDescription": "Instructions decoded", 5 "EventName": "MACRO_INSTS.DECODED", 10 "BriefDescription": "Macro-fused instructions decoded", 17 "BriefDescription": "Two Uop instructions decoded",
|
/linux-6.8/drivers/soc/qcom/ |
D | qmi_encdec.c | 426 * @buf_dst: Buffer to store the decoded element. 428 * @elem_len: Number of elements to be decoded. 429 * @elem_size: Size of a single instance of the element to be decoded. 433 * the decoded elements in the destination buffer "buf_dst". The elements are 435 * function returns the number of bytes of decoded information. 437 * Return: The total size of the decoded data elements, in bytes. 455 * @buf_dst: Buffer to store the decoded element. 457 * @elem_len: Number of elements to be decoded. 464 * and stores the decoded elements in the destination buffer "buf_dst". The 466 * function returns the number of bytes of decoded information. [all …]
|
/linux-6.8/tools/testing/selftests/ir/ |
D | ir_loopback.c | 7 // will send this IR to the receiver side, where we try to read the decoded 181 bool decoded = true; in main() local 187 ksft_test_result_error("no scancode decoded: %m\n"); in main() 188 decoded = false; in main() 192 if (!decoded) in main() 196 ksft_test_result_error("decoded protocol is different: %d\n", in main() 200 ksft_test_result_error("decoded scancode is different: %llx\n", in main()
|
/linux-6.8/drivers/net/ethernet/intel/idpf/ |
D | idpf_singleq_txrx.c | 638 * @ptype: the packet type decoded by hardware 646 struct idpf_rx_ptype_decoded decoded; in idpf_rx_singleq_csum() local 653 /* check if HW has decoded the packet and checksum */ in idpf_rx_singleq_csum() 657 decoded = rxq->vport->rx_ptype_lkup[ptype]; in idpf_rx_singleq_csum() 658 if (unlikely(!(decoded.known && decoded.outer_ip))) in idpf_rx_singleq_csum() 661 ipv4 = IDPF_RX_PTYPE_TO_IPV(&decoded, IDPF_RX_PTYPE_OUTER_IPV4); in idpf_rx_singleq_csum() 662 ipv6 = IDPF_RX_PTYPE_TO_IPV(&decoded, IDPF_RX_PTYPE_OUTER_IPV6); in idpf_rx_singleq_csum() 693 if (decoded.tunnel_type >= IDPF_RX_PTYPE_TUNNEL_IP_GRENAT) in idpf_rx_singleq_csum() 697 switch (decoded.inner_prot) { in idpf_rx_singleq_csum() 799 * @decoded: Decoded Rx packet type related fields [all …]
|
/linux-6.8/fs/bcachefs/ |
D | varint.c | 44 * @out: on success, decoded integer 45 * Returns: size in bytes of the decoded integer - or -1 on failure (would 102 * @out: on success, decoded integer 103 * Returns: size in bytes of the decoded integer - or -1 on failure (would
|
/linux-6.8/tools/testing/selftests/bpf/ |
D | test_lirc_mode2_user.c | 14 // BPF and then decoded into scancodes. The lirc chardev must be the one 120 /* Read decoded IR */ in main() 123 printf("Failed to read decoded IR: %m\n"); in main() 143 /* Read decoded IR */ in main() 146 printf("Failed to read decoded IR: %m\n"); in main()
|
/linux-6.8/tools/perf/pmu-events/arch/x86/bonnell/ |
D | frontend.json | 52 "BriefDescription": "All Instructions decoded", 59 "BriefDescription": "CISC macro instructions decoded", 66 "BriefDescription": "Non-CISC macro instructions decoded",
|
/linux-6.8/net/sunrpc/xprtrdma/ |
D | svc_rdma_pcl.c | 88 * @p: Start of an un-decoded Read list 93 * the un-decoded list. 139 * @p: Start of an un-decoded Read list 144 * the un-decoded list. 191 * @p: Start of an un-decoded Write list 195 * - cl_count is set to the number of chunks in the un-decoded list.
|
/linux-6.8/arch/arm64/kernel/probes/ |
D | decode-insn.c | 139 enum probe_insn decoded; in arm_kprobe_decode_insn() local 160 decoded = arm_probe_decode_insn(insn, &asi->api); in arm_kprobe_decode_insn() 162 if (decoded != INSN_REJECTED && scan_end) in arm_kprobe_decode_insn() 166 return decoded; in arm_kprobe_decode_insn()
|
/linux-6.8/tools/perf/pmu-events/arch/arm64/arm/cortex-a75/ |
D | exception.json | 12 … This event is set every time that an exception is executed because of a decoded trap to the hyper… 15 … This event is set every time that an exception is executed because of a decoded trap to the hyper…
|
/linux-6.8/arch/arm/mach-ep93xx/ |
D | soc.h | 23 * In synchronous boot mode nSDCE3 is decoded starting at physical address 24 * 0x00000000 and nCS0 is decoded starting at 0xf0000000. For asynchronous 25 * boot mode they are swapped with nCS0 decoded at 0x00000000 ann nSDCE3 26 * decoded at 0xf0000000.
|
/linux-6.8/fs/nfs_common/ |
D | nfsacl.c | 331 * @aclcnt: count of ACEs in decoded posix_acl 332 * @pacl: buffer in which to place decoded posix_acl 334 * Returns the length of the decoded ACL in bytes, or a negative errno value. 374 * @aclcnt: OUT: count of ACEs in decoded posix_acl 375 * @pacl: OUT: a dynamically-allocated buffer containing the decoded posix_acl 379 * %true: @pacl contains a decoded ACL, and @xdr is advanced
|
/linux-6.8/include/linux/soc/qcom/ |
D | qmi.h | 96 * 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-6.8/Documentation/userspace-api/media/rc/ |
D | lirc-dev-intro.rst | 10 a bi-directional interface for transporting raw IR and decoded scancodes 14 decoded scancodes to and fro, the essential fops are read, write and ioctl. 88 (in ``CLOCK_MONOTONIC``) when the scancode was decoded. 166 value. When the program has decoded the scancode, it can be submitted using
|
/linux-6.8/drivers/firmware/google/ |
D | vpd_decode.h | 41 * The *consumed starts from 0, which is actually the next byte to be decoded. 44 * If one entry is successfully decoded, sends it to callback and returns the
|
/linux-6.8/net/batman-adv/ |
D | network-coding.c | 1169 if (BATADV_SKB_CB(skb_src)->decoded && in batadv_nc_code_packets() 1170 BATADV_SKB_CB(skb_dest)->decoded) { in batadv_nc_code_packets() 1176 } else if (!BATADV_SKB_CB(skb_src)->decoded && in batadv_nc_code_packets() 1177 !BATADV_SKB_CB(skb_dest)->decoded) { in batadv_nc_code_packets() 1183 } else if (BATADV_SKB_CB(skb_src)->decoded && in batadv_nc_code_packets() 1184 !BATADV_SKB_CB(skb_dest)->decoded) { in batadv_nc_code_packets() 1192 } else if (!BATADV_SKB_CB(skb_src)->decoded && in batadv_nc_code_packets() 1193 BATADV_SKB_CB(skb_dest)->decoded) { in batadv_nc_code_packets() 1222 * batadv_nc_skb_coding_possible() - true if a decoded skb is available at dst. 1236 * Return: true if coding of a decoded packet is allowed. [all …]
|