Home
last modified time | relevance | path

Searched full:decoded (Results 1 – 25 of 447) sorted by relevance

12345678910>>...18

/linux/drivers/md/dm-vdo/
H A Dnumeric.h18 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 Dencodings.c245 * @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 Dynl.py652 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 Ddev-stateless-decoder.rst10 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 Ddev-decoder.rst51 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 Dvidioc-decoder-cmd.rst120 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 Ddelta.h54 * @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 Dfrontend.json3 "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 Dfrontend.json3 "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 Dfrontend.json3 "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 Dfrontend.json3 "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 Dqmi_encdec.c436 * @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 Ddecode-insn.c147 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 Dflexible.rst149 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 Dir_loopback.c7 // 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 Dvarint.c45 * @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 Dtest_lirc_mode2_user.c14 // 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 Dsvc_rdma_pcl.c88 * @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 Dexception.json12 … 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 Dvpd_decode.h41 * 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 Dlirc-dev-intro.rst10 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 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/net/batman-adv/
H A Dnetwork-coding.c1169 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 Dregs-mfc.h165 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 Dconfigfs-usb-gadget-uvc280 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

12345678910>>...18