Home
last modified time | relevance | path

Searched refs:frame (Results 301 - 325 of 1550) sorted by relevance

1...<<11121314151617181920>>...62

/kernel/linux/linux-5.10/drivers/firmware/tegra/
H A Dbpmp-tegra186.c43 void *frame; in tegra186_bpmp_is_message_ready() local
45 frame = tegra_ivc_read_get_next_frame(channel->ivc); in tegra186_bpmp_is_message_ready()
46 if (IS_ERR(frame)) { in tegra186_bpmp_is_message_ready()
51 channel->ib = frame; in tegra186_bpmp_is_message_ready()
58 void *frame; in tegra186_bpmp_is_channel_free() local
60 frame = tegra_ivc_write_get_next_frame(channel->ivc); in tegra186_bpmp_is_channel_free()
61 if (IS_ERR(frame)) { in tegra186_bpmp_is_channel_free()
66 channel->ob = frame; in tegra186_bpmp_is_channel_free()
H A Divc.c219 unsigned int frame) in tegra_ivc_frame_virt()
221 if (WARN_ON(frame >= ivc->num_frames)) in tegra_ivc_frame_virt()
224 return (void *)(header + 1) + ivc->frame_size * frame; in tegra_ivc_frame_virt()
229 unsigned int frame) in tegra_ivc_frame_phys()
233 offset = sizeof(struct tegra_ivc_header) + ivc->frame_size * frame; in tegra_ivc_frame_phys()
240 unsigned int frame, in tegra_ivc_invalidate_frame()
244 if (!ivc->peer || WARN_ON(frame >= ivc->num_frames)) in tegra_ivc_invalidate_frame()
247 phys = tegra_ivc_frame_phys(ivc, phys, frame) + offset; in tegra_ivc_invalidate_frame()
254 unsigned int frame, in tegra_ivc_flush_frame()
258 if (!ivc->peer || WARN_ON(frame > in tegra_ivc_flush_frame()
217 tegra_ivc_frame_virt(struct tegra_ivc *ivc, struct tegra_ivc_header *header, unsigned int frame) tegra_ivc_frame_virt() argument
227 tegra_ivc_frame_phys(struct tegra_ivc *ivc, dma_addr_t phys, unsigned int frame) tegra_ivc_frame_phys() argument
238 tegra_ivc_invalidate_frame(struct tegra_ivc *ivc, dma_addr_t phys, unsigned int frame, unsigned int offset, size_t size) tegra_ivc_invalidate_frame() argument
252 tegra_ivc_flush_frame(struct tegra_ivc *ivc, dma_addr_t phys, unsigned int frame, unsigned int offset, size_t size) tegra_ivc_flush_frame() argument
[all...]
/test/testfwk/arkxtest/uitest/addon/
H A Dscreen_copy.cpp64 void UpdateFrameLocked(shared_ptr<PixelMap> frame, bool &changed, bool &muted);
167 shared_ptr<PixelMap> frame = dm.GetScreenshot(displayId); in PollAndNotifyFrames() local
168 if (frame == nullptr) { in PollAndNotifyFrames()
172 UpdateFrameLocked(frame, changed, screenOff); in PollAndNotifyFrames()
184 void ScreenCopy::UpdateFrameLocked(shared_ptr<PixelMap> frame, bool &changed, bool &screenOff) in UpdateFrameLocked() argument
187 newestFrame_ = frame; in UpdateFrameLocked()
190 // if this is the first frame in UpdateFrameLocked()
194 memset_s(frame->GetWritablePixels(), newestFrameSize, 0, newestFrameSize); in UpdateFrameLocked()
198 // compare this frame and last frame in UpdateFrameLocked()
[all...]
/kernel/linux/linux-5.10/drivers/xen/
H A Dgrant-table.c95 * Grant refs per grant frame.
111 * Introducing a valid entry into the grant table, granting the frame of
114 * granted domain, frame is the page frame to be granted, and flags is
118 unsigned long frame, unsigned flags);
133 * return the frame.
137 * Read the frame number related to a given grant reference.
233 * 2. Write ent->frame:
235 * GTF_accept_transfer: Pseudo-phys frame slot being filled by new
236 * frame, o
240 gnttab_update_entry_v1(grant_ref_t ref, domid_t domid, unsigned long frame, unsigned flags) gnttab_update_entry_v1() argument
249 gnttab_update_entry_v2(grant_ref_t ref, domid_t domid, unsigned long frame, unsigned int flags) gnttab_update_entry_v2() argument
261 gnttab_grant_foreign_access_ref(grant_ref_t ref, domid_t domid, unsigned long frame, int readonly) gnttab_grant_foreign_access_ref() argument
269 gnttab_grant_foreign_access(domid_t domid, unsigned long frame, int readonly) gnttab_grant_foreign_access() argument
480 unsigned long frame; gnttab_end_foreign_transfer_ref_v1() local
511 unsigned long frame; gnttab_end_foreign_transfer_ref_v2() local
548 unsigned long frame = gnttab_end_foreign_transfer_ref(ref); gnttab_end_foreign_transfer() local
[all...]
/kernel/linux/linux-6.6/drivers/hid/
H A Dhid-uclogic-params.c83 * uclogic_params_frame_hid_dbg() - Dump tablet interface frame parameters
85 * @frame: The frame parameters to dump.
87 * Dump tablet interface frame parameters with hid_dbg(). The dump is
92 const struct uclogic_params_frame *frame) in uclogic_params_frame_hid_dbg()
94 hid_dbg(hdev, "\t\t.desc_ptr = %p\n", frame->desc_ptr); in uclogic_params_frame_hid_dbg()
95 hid_dbg(hdev, "\t\t.desc_size = %u\n", frame->desc_size); in uclogic_params_frame_hid_dbg()
96 hid_dbg(hdev, "\t\t.id = %u\n", frame->id); in uclogic_params_frame_hid_dbg()
97 hid_dbg(hdev, "\t\t.suffix = %s\n", frame->suffix); in uclogic_params_frame_hid_dbg()
98 hid_dbg(hdev, "\t\t.re_lsb = %u\n", frame in uclogic_params_frame_hid_dbg()
90 uclogic_params_frame_hid_dbg( const struct hid_device *hdev, const struct uclogic_params_frame *frame) uclogic_params_frame_hid_dbg() argument
503 uclogic_params_frame_cleanup(struct uclogic_params_frame *frame) uclogic_params_frame_cleanup() argument
524 uclogic_params_frame_init_with_desc( struct uclogic_params_frame *frame, const __u8 *desc_ptr, size_t desc_size, unsigned int id) uclogic_params_frame_init_with_desc() argument
562 uclogic_params_frame_init_v1(struct uclogic_params_frame *frame, bool *pfound, struct hid_device *hdev) uclogic_params_frame_init_v1() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/microchip/wilc1000/
H A Dwlan_cfg.h45 int wilc_wlan_cfg_set_wid(u8 *frame, u32 offset, u16 id, u8 *buf, int size);
46 int wilc_wlan_cfg_get_wid(u8 *frame, u32 offset, u16 id);
49 void wilc_wlan_cfg_indicate_rx(struct wilc *wilc, u8 *frame, int size,
/kernel/linux/linux-6.6/drivers/net/wireless/microchip/wilc1000/
H A Dwlan_cfg.h45 int wilc_wlan_cfg_set_wid(u8 *frame, u32 offset, u16 id, u8 *buf, int size);
46 int wilc_wlan_cfg_get_wid(u8 *frame, u32 offset, u16 id);
49 void wilc_wlan_cfg_indicate_rx(struct wilc *wilc, u8 *frame, int size,
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/
H A Dintel_lspcon.h29 void *frame, ssize_t len);
41 const void *frame, ssize_t len);
45 void *frame, ssize_t len);
/kernel/linux/linux-6.6/drivers/firmware/tegra/
H A Divc.c227 unsigned int frame, struct iosys_map *map) in tegra_ivc_frame_virt()
229 size_t offset = sizeof(struct tegra_ivc_header) + ivc->frame_size * frame; in tegra_ivc_frame_virt()
231 if (WARN_ON(frame >= ivc->num_frames)) in tegra_ivc_frame_virt()
241 unsigned int frame) in tegra_ivc_frame_phys()
245 offset = sizeof(struct tegra_ivc_header) + ivc->frame_size * frame; in tegra_ivc_frame_phys()
252 unsigned int frame, in tegra_ivc_invalidate_frame()
256 if (!ivc->peer || WARN_ON(frame >= ivc->num_frames)) in tegra_ivc_invalidate_frame()
259 phys = tegra_ivc_frame_phys(ivc, phys, frame) + offset; in tegra_ivc_invalidate_frame()
266 unsigned int frame, in tegra_ivc_flush_frame()
270 if (!ivc->peer || WARN_ON(frame > in tegra_ivc_flush_frame()
226 tegra_ivc_frame_virt(struct tegra_ivc *ivc, const struct iosys_map *header, unsigned int frame, struct iosys_map *map) tegra_ivc_frame_virt() argument
239 tegra_ivc_frame_phys(struct tegra_ivc *ivc, dma_addr_t phys, unsigned int frame) tegra_ivc_frame_phys() argument
250 tegra_ivc_invalidate_frame(struct tegra_ivc *ivc, dma_addr_t phys, unsigned int frame, unsigned int offset, size_t size) tegra_ivc_invalidate_frame() argument
264 tegra_ivc_flush_frame(struct tegra_ivc *ivc, dma_addr_t phys, unsigned int frame, unsigned int offset, size_t size) tegra_ivc_flush_frame() argument
[all...]
/kernel/linux/linux-5.10/include/trace/events/
H A Drtg.h124 __field(struct frame_info *, frame)
133 __entry->frame = rtg_frame_info(rtgid);
134 __entry->pid = __entry->frame ? ((__entry->frame->thread[0]) ?
135 ((__entry->frame->thread[0])->pid) :
/kernel/linux/linux-6.6/include/trace/events/
H A Drtg.h125 __field(struct frame_info *, frame)
134 __entry->frame = rtg_frame_info(rtgid);
135 __entry->pid = __entry->frame ? ((__entry->frame->thread[0]) ?
136 ((__entry->frame->thread[0])->pid) :
/kernel/linux/linux-6.6/kernel/trace/
H A Drethook.c241 * @frame: A frame pointer
246 * The @tsk must be 'current' or a task which is not running. @frame is a hint
248 * rethook::frame field. The @cur is a loop cursor for searching the
254 unsigned long rethook_find_ret_addr(struct task_struct *tsk, unsigned long frame, in rethook_find_ret_addr() argument
271 } while (rhn->frame != frame); in rethook_find_ret_addr()
282 * frame pointer to record real return address on the stack, in arch_rethook_fixup_return()
290 unsigned long frame) in rethook_trampoline_handler()
318 if (WARN_ON_ONCE(rhn->frame ! in rethook_trampoline_handler()
289 rethook_trampoline_handler(struct pt_regs *regs, unsigned long frame) rethook_trampoline_handler() argument
[all...]
/kernel/linux/linux-5.10/drivers/block/aoe/
H A Daoecmd.c24 static void ktcomplete(struct frame *, struct sk_buff *);
78 static struct frame *
82 struct frame *f; in getframe_deferred()
86 f = list_entry(pos, struct frame, head); in getframe_deferred()
95 static struct frame *
98 struct frame *f; in getframe()
105 f = list_entry(pos, struct frame, head); in getframe()
117 * This driver reserves tag -1 to mean "unused frame."
193 aoe_freetframe(struct frame *f) in aoe_freetframe()
205 static struct frame *
[all...]
/kernel/linux/linux-6.6/drivers/block/aoe/
H A Daoecmd.c23 static void ktcomplete(struct frame *, struct sk_buff *);
77 static struct frame *
81 struct frame *f; in getframe_deferred()
85 f = list_entry(pos, struct frame, head); in getframe_deferred()
94 static struct frame *
97 struct frame *f; in getframe()
104 f = list_entry(pos, struct frame, head); in getframe()
116 * This driver reserves tag -1 to mean "unused frame."
192 aoe_freetframe(struct frame *f) in aoe_freetframe()
204 static struct frame *
[all...]
/kernel/linux/linux-5.10/drivers/nfc/pn544/
H A Di2c.c291 * Writing a frame must not return the number of written bytes.
308 I2C_DUMP_SKB("i2c frame written", skb); in pn544_hci_i2c_write()
350 * Reads an shdlc frame and returns it in a newly allocated sk_buff. Guarantees
351 * that i2c bus will be flushed and that next read will start on a new frame.
355 * -EBADMSG : frame was incorrect and discarded
356 * -ENOMEM : cannot allocate skb, frame dropped
392 I2C_DUMP_SKB("i2c frame read", *skb); in pn544_hci_i2c_read()
467 * Reads an shdlc frame from the chip. This is not as straightforward as it
468 * seems. There are cases where we could loose the frame start synchronization.
469 * The frame forma
563 u8 frame[PN544_FW_I2C_MAX_PAYLOAD]; pn544_hci_i2c_fw_write_cmd() local
604 struct pn544_i2c_fw_frame_check frame; pn544_hci_i2c_fw_check_cmd() local
[all...]
/kernel/linux/linux-6.6/drivers/nfc/pn544/
H A Di2c.c289 * Writing a frame must not return the number of written bytes.
306 I2C_DUMP_SKB("i2c frame written", skb); in pn544_hci_i2c_write()
348 * Reads an shdlc frame and returns it in a newly allocated sk_buff. Guarantees
349 * that i2c bus will be flushed and that next read will start on a new frame.
353 * -EBADMSG : frame was incorrect and discarded
354 * -ENOMEM : cannot allocate skb, frame dropped
390 I2C_DUMP_SKB("i2c frame read", *skb); in pn544_hci_i2c_read()
465 * Reads an shdlc frame from the chip. This is not as straightforward as it
466 * seems. There are cases where we could loose the frame start synchronization.
467 * The frame forma
561 u8 frame[PN544_FW_I2C_MAX_PAYLOAD]; pn544_hci_i2c_fw_write_cmd() local
602 struct pn544_i2c_fw_frame_check frame; pn544_hci_i2c_fw_check_cmd() local
[all...]
/device/soc/rockchip/rk3568/hardware/mpp/mpp/legacy/
H A Dvpu_api_legacy.cpp348 MppFrame frame = nullptr; in init_frame_info() local
376 (*(mRKMppApi.HdiMppFrameInit))(&frame); in init_frame_info()
378 (*(mRKMppApi.HdiMppFrameSetWidth))(frame, p->ImgWidth); in init_frame_info()
379 (*(mRKMppApi.HdiMppFrameSetHeight))(frame, p->ImgHeight); in init_frame_info()
380 (*(mRKMppApi.HdiMppFrameSetFormat))(frame, (MppFrameFormat)(p->CodecType | fbcOutFmt)); in init_frame_info()
382 ret = mpi->control(mpp_ctx, MPP_DEC_SET_FRAME_INFO, (MppParam)frame); in init_frame_info()
384 p->ImgHorStride = (*(mRKMppApi.HdiMppFrameGetHorStride))(frame); in init_frame_info()
385 p->ImgVerStride = (*(mRKMppApi.HdiMppFrameGetVerStride))(frame); in init_frame_info()
386 p->BufSize = (*(mRKMppApi.HdiMppFrameGetBufferSize))(frame); in init_frame_info()
388 (*(mRKMppApi.HdiMppFrameDeinit))(&frame); in init_frame_info()
1024 MppFrame frame = nullptr; encode() local
1265 MppFrame frame = nullptr; encoder_sendframe() local
[all...]
/kernel/linux/linux-5.10/drivers/media/usb/uvc/
H A Duvc_driver.c381 /* Convert a fraction to a frame interval in 100ns multiples. The idea here is
507 struct uvc_frame *frame; in uvc_parse_format() local
635 /* Create a dummy frame descriptor. */ in uvc_parse_format()
636 frame = &format->frame[0]; in uvc_parse_format()
637 memset(&format->frame[0], 0, sizeof(format->frame[0])); in uvc_parse_format()
638 frame->bFrameIntervalType = 1; in uvc_parse_format()
639 frame->dwDefaultFrameInterval = 1; in uvc_parse_format()
640 frame in uvc_parse_format()
781 struct uvc_frame *frame; uvc_parse_streaming() local
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Drethook.h50 * @frame: The storage for the frame pointer.
63 unsigned long frame; member
73 unsigned long rethook_find_ret_addr(struct task_struct *tsk, unsigned long frame,
97 unsigned long frame);
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dwl_cfgp2p.h54 P2P_SCAN_AFX_PEER_NORMAL, /**< scan for action frame search */
55 P2P_SCAN_AFX_PEER_REDUCED, /**< scan for action frame search with short time */
256 wl_cfgp2p_is_pub_action(void *frame, u32 frame_len);
258 wl_cfgp2p_is_p2p_action(void *frame, u32 frame_len);
260 wl_cfgp2p_is_gas_action(void *frame, u32 frame_len);
264 wl_cfgp2p_is_p2p_gas_action(void *frame, u32 frame_len);
266 wl_cfgp2p_print_actframe(bool tx, void *frame, u32 frame_len, u32 channel);
419 wl_cfgp2p_need_wait_actfrmae(struct bcm_cfg80211 *cfg, void *frame, u32 frame_len, bool tx);
441 * or the device discoverablity frame is destined to GO
447 #define IS_GAS_REQ(frame, le
[all...]
/kernel/linux/linux-5.10/drivers/tty/serial/
H A Defm32-uart.c219 port->icount.frame++; in efm32_uart_rx_chars()
350 u32 frame = 0; in efm32_uart_set_termios() local
361 frame |= UARTn_FRAME_DATABITS(5); in efm32_uart_set_termios()
364 frame |= UARTn_FRAME_DATABITS(6); in efm32_uart_set_termios()
367 frame |= UARTn_FRAME_DATABITS(7); in efm32_uart_set_termios()
370 frame |= UARTn_FRAME_DATABITS(8); in efm32_uart_set_termios()
376 frame |= UARTn_FRAME_STOPBITS_TWO; in efm32_uart_set_termios()
378 frame |= UARTn_FRAME_STOPBITS_ONE; in efm32_uart_set_termios()
382 frame |= UARTn_FRAME_PARITY_ODD; in efm32_uart_set_termios()
384 frame | in efm32_uart_set_termios()
556 u32 route, clkdiv, frame; efm32_uart_console_get_options() local
[all...]
/kernel/linux/linux-5.10/arch/csky/kernel/
H A Dstacktrace.c40 struct stackframe *frame; in walk_stackframe() local
45 /* Validate frame pointer */ in walk_stackframe()
50 /* Unwind stack frame */ in walk_stackframe()
51 frame = (struct stackframe *)fp; in walk_stackframe()
53 fp = frame->fp; in walk_stackframe()
54 pc = ftrace_graph_ret_addr(current, NULL, frame->ra, in walk_stackframe()
/kernel/linux/linux-6.6/arch/csky/kernel/
H A Dstacktrace.c39 struct stackframe *frame; in walk_stackframe() local
44 /* Validate frame pointer */ in walk_stackframe()
49 /* Unwind stack frame */ in walk_stackframe()
50 frame = (struct stackframe *)fp; in walk_stackframe()
52 fp = frame->fp; in walk_stackframe()
53 pc = ftrace_graph_ret_addr(current, NULL, frame->ra, in walk_stackframe()
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath5k/
H A Dtrace.h27 __dynamic_array(u8, frame, skb->len)
32 memcpy(__get_dynamic_array(frame), skb->data, skb->len);
49 __dynamic_array(u8, frame, skb->len)
56 memcpy(__get_dynamic_array(frame), skb->data, skb->len);
/kernel/linux/linux-5.10/include/uapi/drm/
H A Dlima_drm.h72 /* frame used to setup GP for each task */
74 __u32 frame[LIMA_GP_FRAME_REG_NUM]; member
80 /* frame used to setup mali400 GPU PP for each task */
82 __u32 frame[LIMA_PP_FRAME_REG_NUM]; member
89 /* frame used to setup mali450 GPU PP for each task */
91 __u32 frame[LIMA_PP_FRAME_REG_NUM]; member
120 __u32 frame_size; /* in, size of frame field */
122 __u64 frame; /* in, GP/PP frame */ member

Completed in 17 milliseconds

1...<<11121314151617181920>>...62