/linux/drivers/md/dm-vdo/ |
H A D | numeric.h | 18 static inline void decode_s64_le(const u8 *buffer, size_t *offset, s64 *decoded) in decode_s64_le() argument 20 *decoded = get_unaligned_le64(buffer + *offset); in decode_s64_le() 30 static inline void decode_u64_le(const u8 *buffer, size_t *offset, u64 *decoded) in decode_u64_le() argument 32 *decoded = get_unaligned_le64(buffer + *offset); in decode_u64_le() 42 static inline void decode_s32_le(const u8 *buffer, size_t *offset, s32 *decoded) in decode_s32_le() argument 44 *decoded = get_unaligned_le32(buffer + *offset); in decode_s32_le() 54 static inline void decode_u32_le(const u8 *buffer, size_t *offset, u32 *decoded) in decode_u32_le() argument 56 *decoded = get_unaligned_le32(buffer + *offset); in decode_u32_le() 66 static inline void decode_u16_le(const u8 *buffer, size_t *offset, u16 *decoded) in decode_u16_le() argument 68 *decoded = get_unaligned_le16(buffer + *offset); in decode_u16_le()
|
H A D | encodings.c | 245 * @geometry: The structure to receive the decoded fields. 297 * @geometry: The structure to receive the decoded fields. 324 "should have decoded up to the geometry checksum"); in vdo_parse_geometry_block() 401 "decoded block map component size must match header size"); in decode_block_map_state_2_0() 512 "decoded recovery journal component size must match header size"); in decode_recovery_journal_state_7_0() 620 "decoded slab depot component size must match header size"); in decode_slab_depot_state_2_0() 756 * Return: The decoded entry. 1024 "decoded size of a layout header must match structure"); in decode_layout() 1291 * @buffer: The buffer being decoded. 1294 * @states: An object to hold the successfully decoded state. [all …]
|
/linux/tools/net/ynl/pyynl/lib/ |
H A D | ynl.py | 652 decoded = self._decode_struct(attr.raw, attr_spec.struct_name) 654 decoded = attr.as_c_array(attr_spec.sub_type) 656 decoded = [ self._decode_enum(x, attr_spec) for x in decoded ] 658 decoded = [ self._formatted_string(x, attr_spec.display_hint) 659 for x in decoded ] 661 decoded = attr.as_bin() 663 decoded = self._formatted_string(decoded, attr_spec.display_hint) 664 return decoded 667 decoded = [] 675 decoded.append({ item.type: subattrs }) [all …]
|
/linux/Documentation/userspace-api/media/v4l/ |
H A 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 …]
|
H A 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 …]
|
H A D | vidioc-decoder-cmd.rst | 120 the last frame was decoded. 171 data from its internal buffers was decoded. 197 dequeueing the capture buffer containing the last decoded frame. 198 So this command can be used to explicitly flush that final decoded
|
/linux/drivers/media/platform/st/sti/delta/ |
H A 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/tools/perf/pmu-events/arch/x86/westmereep-sp/ |
H A D | frontend.json | 3 "BriefDescription": "Instructions decoded", 6 "EventName": "MACRO_INSTS.DECODED", 11 "BriefDescription": "Macro-fused instructions decoded", 19 "BriefDescription": "Two Uop instructions decoded",
|
/linux/tools/perf/pmu-events/arch/x86/nehalemex/ |
H A D | frontend.json | 3 "BriefDescription": "Instructions decoded", 6 "EventName": "MACRO_INSTS.DECODED", 11 "BriefDescription": "Macro-fused instructions decoded", 19 "BriefDescription": "Two Uop instructions decoded",
|
/linux/tools/perf/pmu-events/arch/x86/westmereep-dp/ |
H A D | frontend.json | 3 "BriefDescription": "Instructions decoded", 6 "EventName": "MACRO_INSTS.DECODED", 11 "BriefDescription": "Macro-fused instructions decoded", 19 "BriefDescription": "Two Uop instructions decoded",
|
/linux/tools/perf/pmu-events/arch/x86/nehalemep/ |
H A D | frontend.json | 3 "BriefDescription": "Instructions decoded", 6 "EventName": "MACRO_INSTS.DECODED", 11 "BriefDescription": "Macro-fused instructions decoded", 19 "BriefDescription": "Two Uop instructions decoded",
|
/linux/drivers/soc/qcom/ |
H A D | qmi_encdec.c | 436 * @buf_dst: Buffer to store the decoded element. 438 * @elem_len: Number of elements to be decoded. 439 * @elem_size: Size of a single instance of the element to be decoded. 443 * the decoded elements in the destination buffer "buf_dst". The elements are 445 * function returns the number of bytes of decoded information. 447 * Return: The total size of the decoded data elements, in bytes. 465 * @buf_dst: Buffer to store the decoded element. 467 * @elem_len: Number of elements to be decoded. 474 * and stores the decoded elements in the destination buffer "buf_dst". The 476 * function returns the number of bytes of decoded information. [all …]
|
/linux/arch/arm64/kernel/probes/ |
H A D | decode-insn.c | 147 enum probe_insn decoded; in arm_kprobe_decode_insn() local 155 decoded = INSN_GOOD_NO_SLOT; in arm_kprobe_decode_insn() 158 decoded = INSN_GOOD_NO_SLOT; in arm_kprobe_decode_insn() 160 decoded = arm_probe_decode_insn(insn, &asi->api); in arm_kprobe_decode_insn() 180 if (decoded != INSN_REJECTED && scan_end) in arm_kprobe_decode_insn() 184 return decoded; in arm_kprobe_decode_insn()
|
/linux/Documentation/driver-api/cxl/platform/example-configurations/ |
H A D | flexible.rst | 149 Flags (decoded below) : 0000000B 161 Flags (decoded below) : 0000000B 173 Flags (decoded below) : 0000000B 185 Flags (decoded below) : 0000000B 197 Flags (decoded below) : 0000000B 209 Flags (decoded below) : 0000000B 221 Flags (decoded below) : 0000000B
|
/linux/tools/testing/selftests/ir/ |
H A 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/fs/bcachefs/ |
H A D | varint.c | 45 * @out: on success, decoded integer 46 * Returns: size in bytes of the decoded integer - or -1 on failure (would 103 * @out: on success, decoded integer 104 * Returns: size in bytes of the decoded integer - or -1 on failure (would
|
/linux/tools/testing/selftests/bpf/ |
H A 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/net/sunrpc/xprtrdma/ |
H A 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/tools/perf/pmu-events/arch/arm64/arm/cortex-a75/ |
H A 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/drivers/firmware/google/ |
H A 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/Documentation/userspace-api/media/rc/ |
H A 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/include/linux/soc/qcom/ |
H A 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/net/batman-adv/ |
H A 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 …]
|
/linux/drivers/media/platform/samsung/s5p-mfc/ |
H A D | regs-mfc.h | 165 decoded pic */ 171 #define S5P_FIMV_SI_DISPLAY_STATUS 0x201c /* status of decoded picture */ 173 #define S5P_FIMV_SI_DECODE_Y_ADR 0x2024 /* luma addr of decoded pic */ 174 #define S5P_FIMV_SI_DECODE_C_ADR 0x2028 /* chroma addrof decoded pic */ 175 #define S5P_FIMV_SI_DECODE_STATUS 0x202c /* status of decoded picture */ 223 /* Decoded frame tpe */
|
/linux/Documentation/ABI/testing/ |
H A D | configfs-usb-gadget-uvc | 280 wHeight height of decoded bitmap frame in px 281 wWidth width of decoded bitmam frame in px 311 specify color in the decoded video 339 wHeight height of decoded bitmap frame in px 340 wWidth width of decoded bitmam frame in px 370 specify color in the decoded video 403 wHeight height of decoded bitmap frame in px 404 wWidth width of decoded bitmam frame in px
|