Home
last modified time | relevance | path

Searched refs:cur_pos (Results 1 – 20 of 20) sorted by relevance

/Linux-v6.1/drivers/hid/intel-ish-hid/
Dishtp-hid-client.c38 size_t cur_pos, size_t payload_len) in report_bad_packet() argument
50 (unsigned int)cur_pos, in report_bad_packet()
73 size_t payload_len, total_len, cur_pos, raw_len; in process_recv() local
85 cur_pos = 0; in process_recv()
88 if (cur_pos + sizeof(struct hostif_msg) > total_len) { in process_recv()
98 recv_msg = (struct hostif_msg *)(recv_buf + cur_pos); in process_recv()
102 if (cur_pos + payload_len + sizeof(struct hostif_msg) > in process_recv()
105 report_bad_packet(hid_ishtp_cl, recv_msg, cur_pos, in process_recv()
120 cur_pos, in process_recv()
169 cur_pos, in process_recv()
[all …]
/Linux-v6.1/drivers/s390/block/
Ddasd_fba.c276 int cur_pos = 0; in count_ccws() local
284 cur_pos = wz_stop - first_rec + 1; in count_ccws()
288 if (last_rec - (first_rec + cur_pos) + 1 >= blocks_per_page) { in count_ccws()
295 cur_pos += d_stop - (first_rec + cur_pos) + 1; in count_ccws()
299 if (cur_pos == 0 || first_rec + cur_pos - 1 < last_rec) in count_ccws()
332 int cur_pos = 0; /* Current position within the extent */ in dasd_fba_build_cp_discard() local
370 locate_record(ccw++, LO_data++, WRITE, cur_pos, wz_count); in dasd_fba_build_cp_discard()
375 cur_pos = wz_count; in dasd_fba_build_cp_discard()
379 if (last_rec - (first_rec + cur_pos) + 1 >= blocks_per_page) { in dasd_fba_build_cp_discard()
387 d_count = d_stop - (first_rec + cur_pos) + 1; in dasd_fba_build_cp_discard()
[all …]
Ddasd_eckd.c3707 int cur_pos = 0; in count_exts() local
3719 cur_pos = tmp - from + 1; in count_exts()
3723 if (to - (from + cur_pos) + 1 >= trks_per_ext) { in count_exts()
3725 count += (tmp - (from + cur_pos) + 1) / trks_per_ext; in count_exts()
3726 cur_pos = tmp; in count_exts()
3729 if (cur_pos < to) in count_exts()
3865 int cur_pos; in dasd_eckd_release_space_trks() local
3876 cur_pos = from; in dasd_eckd_release_space_trks()
3880 while (cur_pos < to) { in dasd_eckd_release_space_trks()
3881 stop = cur_pos + step - in dasd_eckd_release_space_trks()
[all …]
/Linux-v6.1/drivers/media/pci/b2c2/
Dflexcop-pci.c187 u32 cur_pos = cur_addr - fc_pci->dma[0].dma_addr0; in flexcop_pci_isr() local
188 if (cur_pos > fc_pci->dma[0].size * 2) in flexcop_pci_isr()
193 v.raw, (unsigned long long)cur_addr, cur_pos, in flexcop_pci_isr()
200 if (cur_pos < fc_pci->last_dma1_cur_pos) { in flexcop_pci_isr()
212 if (cur_pos > fc_pci->last_dma1_cur_pos) { in flexcop_pci_isr()
214 cur_pos - fc_pci->last_dma1_cur_pos); in flexcop_pci_isr()
218 cur_pos - fc_pci->last_dma1_cur_pos); in flexcop_pci_isr()
222 fc_pci->last_dma1_cur_pos = cur_pos; in flexcop_pci_isr()
/Linux-v6.1/drivers/usb/serial/
Dkobil_sct.c109 int cur_pos; /* index of the next char to send in buf */ member
124 priv->cur_pos = 0; in kobil_port_probe()
327 todo = priv->filled - priv->cur_pos; in kobil_write()
334 priv->buf + priv->cur_pos, length); in kobil_write()
337 priv->cur_pos = priv->cur_pos + length; in kobil_write()
341 todo = priv->filled - priv->cur_pos; in kobil_write()
348 priv->cur_pos = 0; in kobil_write()
/Linux-v6.1/tools/perf/util/
Dgenelf_debug.c40 size_t cur_pos; member
50 for (i = 0 ; i < be->cur_pos; i++) in buffer_ext_dump()
61 if ((be->cur_pos + sz) < be_sz) { in buffer_ext_add()
62 memcpy(be->data + be->cur_pos, addr, sz); in buffer_ext_add()
63 be->cur_pos += sz; in buffer_ext_add()
86 be->cur_pos = 0; in buffer_ext_init()
93 return be->cur_pos; in buffer_ext_size()
/Linux-v6.1/drivers/spi/
Dspi-tegra114.c180 unsigned cur_pos; member
262 unsigned remain_len = t->len - tspi->cur_pos; in tegra_spi_calculate_curr_xfer_param()
326 if (nbytes > t->len - tspi->cur_pos) in tegra_spi_fill_tx_fifo_from_client_txbuf()
327 nbytes = t->len - tspi->cur_pos; in tegra_spi_fill_tx_fifo_from_client_txbuf()
372 if (len > t->len - tspi->cur_pos) in tegra_spi_read_rx_fifo_to_client_rxbuf()
373 len = t->len - tspi->cur_pos; in tegra_spi_read_rx_fifo_to_client_rxbuf()
398 memcpy(tspi->tx_dma_buf, t->tx_buf + tspi->cur_pos, len); in tegra_spi_copy_client_txbuf_to_spi_txbuf()
407 if (consume > t->len - tspi->cur_pos) in tegra_spi_copy_client_txbuf_to_spi_txbuf()
408 consume = t->len - tspi->cur_pos; in tegra_spi_copy_client_txbuf_to_spi_txbuf()
447 if (consume > t->len - tspi->cur_pos) in tegra_spi_copy_spi_rxbuf_to_client_rxbuf()
[all …]
Dspi-tegra210-quad.c187 unsigned int cur_pos; member
270 unsigned int remain_len = t->len - tqspi->cur_pos; in tegra_qspi_calculate_curr_xfer_param()
337 if (len > t->len - tqspi->cur_pos) in tegra_qspi_fill_tx_fifo_from_client_txbuf()
338 len = t->len - tqspi->cur_pos; in tegra_qspi_fill_tx_fifo_from_client_txbuf()
381 if (len > t->len - tqspi->cur_pos) in tegra_qspi_read_rx_fifo_to_client_rxbuf()
382 len = t->len - tqspi->cur_pos; in tegra_qspi_read_rx_fifo_to_client_rxbuf()
423 if (consume > t->len - tqspi->cur_pos) in tegra_qspi_copy_client_txbuf_to_qspi_txbuf()
424 consume = t->len - tqspi->cur_pos; in tegra_qspi_copy_client_txbuf_to_qspi_txbuf()
460 if (consume > t->len - tqspi->cur_pos) in tegra_qspi_copy_qspi_rxbuf_to_client_rxbuf()
461 consume = t->len - tqspi->cur_pos; in tegra_qspi_copy_qspi_rxbuf_to_client_rxbuf()
[all …]
Dspi-tegra20-sflash.c115 unsigned cur_pos; member
161 unsigned remain_len = t->len - tsd->cur_pos; in tegra_sflash_calculate_curr_xfer_param()
265 tsd->cur_pos = 0; in tegra_sflash_start_transfer_one()
380 tsd->cur_pos = tsd->cur_tx_pos; in handle_cpu_based_xfer()
382 tsd->cur_pos = tsd->cur_rx_pos; in handle_cpu_based_xfer()
384 if (tsd->cur_pos == t->len) { in handle_cpu_based_xfer()
Dspi-tegra20-slink.c168 unsigned cur_pos; member
258 unsigned remain_len = t->len - tspi->cur_pos; in tegra_slink_calculate_curr_xfer_param()
373 memcpy(tspi->tx_dma_buf, t->tx_buf + tspi->cur_pos, len); in tegra_slink_copy_client_txbuf_to_spi_txbuf()
691 tspi->cur_pos = 0; in tegra_slink_start_transfer_one()
864 tspi->cur_pos = tspi->cur_tx_pos; in handle_cpu_based_xfer()
866 tspi->cur_pos = tspi->cur_rx_pos; in handle_cpu_based_xfer()
868 if (tspi->cur_pos == t->len) { in handle_cpu_based_xfer()
938 tspi->cur_pos = tspi->cur_tx_pos; in handle_dma_based_xfer()
940 tspi->cur_pos = tspi->cur_rx_pos; in handle_dma_based_xfer()
942 if (tspi->cur_pos == t->len) { in handle_dma_based_xfer()
/Linux-v6.1/drivers/gpu/drm/vmwgfx/
Dvmwgfx_cmdbuf.c123 size_t cur_pos; member
671 if (man->cur_pos == 0) { in __vmw_cmdbuf_cur_flush()
676 man->cur->cb_header->length = man->cur_pos; in __vmw_cmdbuf_cur_flush()
681 man->cur_pos = 0; in __vmw_cmdbuf_cur_flush()
1011 if (cur && (size + man->cur_pos > cur->size || in vmw_cmdbuf_reserve_cur()
1035 return (void *) (man->cur->cmd + man->cur_pos); in vmw_cmdbuf_reserve_cur()
1053 man->cur_pos += size; in vmw_cmdbuf_commit_cur()
1114 man->cur_pos = size; in vmw_cmdbuf_commit()
/Linux-v6.1/fs/f2fs/
Dsegment.h734 int cur_pos = 0, next_pos; in check_block_count() local
742 cur_pos); in check_block_count()
743 valid_blocks += next_pos - cur_pos; in check_block_count()
747 cur_pos); in check_block_count()
748 cur_pos = next_pos; in check_block_count()
750 } while (cur_pos < usable_blks_per_seg); in check_block_count()
Dsegment.c1982 unsigned int cur_pos = 0, next_pos, len, total_len = 0; in f2fs_clear_prefree_segments() local
1988 sbi->blocks_per_seg, cur_pos); in f2fs_clear_prefree_segments()
1989 len = next_pos - cur_pos; in f2fs_clear_prefree_segments()
1995 f2fs_issue_discard(sbi, entry->start_blkaddr + cur_pos, in f2fs_clear_prefree_segments()
2000 sbi->blocks_per_seg, cur_pos); in f2fs_clear_prefree_segments()
2003 cur_pos = next_pos; in f2fs_clear_prefree_segments()
2006 if (cur_pos < sbi->blocks_per_seg) in f2fs_clear_prefree_segments()
/Linux-v6.1/fs/udf/
Ddir.c142 loff_t cur_pos = nf_pos; in udf_readdir() local
155 if (cur_pos < emit_pos) in udf_readdir()
/Linux-v6.1/fs/reiserfs/
Ddir.c144 loff_t cur_pos = deh_offset(deh); in reiserfs_readdir_inode() local
224 next_pos = cur_pos + 1; in reiserfs_readdir_inode()
/Linux-v6.1/include/xen/interface/io/
Dsndif.h1026 struct xensnd_cur_pos_evt cur_pos; member
/Linux-v6.1/kernel/
Drelay.c1153 unsigned int cur_pos = read_start + total_len; in subbuf_splice_actor() local
1164 this_end = cur_pos + this_len; in subbuf_splice_actor()
1166 this_len = nonpad_end - cur_pos; in subbuf_splice_actor()
/Linux-v6.1/sound/xen/
Dxen_snd_front_evtchnl.c119 event->op.cur_pos.position); in evtchnl_interrupt_evt()
/Linux-v6.1/fs/ntfs3/
Dfslog.c1621 u16 cur_pos, best_page_pos; in last_log_lsn() local
2096 cur_pos = 2; in last_log_lsn()
2119 if (le16_to_cpu(tst_page->page_pos) == cur_pos && in last_log_lsn()
2139 cur_pos += 1; in last_log_lsn()
/Linux-v6.1/drivers/net/ethernet/hisilicon/hns3/hns3pf/
Dhclge_main.c5765 u8 cur_pos = 0, tuple_size, shift_bits; in hclge_fd_convert_meta_data() local
5774 hnae3_set_bit(meta_data, cur_pos, NIC_PACKET); in hclge_fd_convert_meta_data()
5775 cur_pos += tuple_size; in hclge_fd_convert_meta_data()
5781 GENMASK(cur_pos + tuple_size, cur_pos), in hclge_fd_convert_meta_data()
5782 cur_pos, port_number); in hclge_fd_convert_meta_data()
5783 cur_pos += tuple_size; in hclge_fd_convert_meta_data()
5792 shift_bits = sizeof(meta_data) * 8 - cur_pos; in hclge_fd_convert_meta_data()