Home
last modified time | relevance | path

Searched refs:push_ptr (Results 1 – 7 of 7) sorted by relevance

/linux-6.12.1/sound/firewire/fireworks/
Dfireworks_transaction.c128 if (efw->push_ptr < efw->pull_ptr) in copy_resp_to_buf()
129 capacity = (unsigned int)(efw->pull_ptr - efw->push_ptr); in copy_resp_to_buf()
132 (unsigned int)(efw->push_ptr - efw->pull_ptr); in copy_resp_to_buf()
143 (unsigned int)(efw->push_ptr - efw->resp_buf); in copy_resp_to_buf()
146 memcpy(efw->push_ptr, data, till_end); in copy_resp_to_buf()
148 efw->push_ptr += till_end; in copy_resp_to_buf()
149 if (efw->push_ptr >= efw->resp_buf + snd_efw_resp_buf_size) in copy_resp_to_buf()
150 efw->push_ptr -= snd_efw_resp_buf_size; in copy_resp_to_buf()
Dfireworks_hwdep.c51 while (efw->push_ptr != pull_ptr) { in hwdep_read_resp_buf()
133 queued = efw->push_ptr != efw->pull_ptr; in hwdep_read()
144 queued = efw->push_ptr != efw->pull_ptr; in hwdep_read()
196 if (efw->dev_lock_changed || efw->pull_ptr != efw->push_ptr) in hwdep_poll()
Dfireworks_proc.c184 if (efw->pull_ptr > efw->push_ptr) in proc_read_queues_state()
186 (unsigned int)(efw->pull_ptr - efw->push_ptr); in proc_read_queues_state()
188 consumed = (unsigned int)(efw->push_ptr - efw->pull_ptr); in proc_read_queues_state()
Dfireworks.h106 u8 *push_ptr; member
Dfireworks.c247 efw->pull_ptr = efw->push_ptr = efw->resp_buf; in efw_probe()
/linux-6.12.1/include/uapi/drm/
Dnouveau_drm.h432 __u64 push_ptr; member
/linux-6.12.1/drivers/gpu/drm/nouveau/
Dnouveau_exec.c296 u64 pushs = req->push_ptr; in nouveau_exec_ucopy()