Home
last modified time | relevance | path

Searched refs:cpy_len (Results 1 – 6 of 6) sorted by relevance

/linux-6.15/drivers/misc/mei/
H A Dvsc-tp.c194 memcpy(dst, src, cpy_len); in vsc_tp_xfer_helper()
196 src += cpy_len; in vsc_tp_xfer_helper()
197 src_len -= cpy_len; in vsc_tp_xfer_helper()
198 dst += cpy_len; in vsc_tp_xfer_helper()
199 dst_len -= cpy_len; in vsc_tp_xfer_helper()
202 offset += cpy_len; in vsc_tp_xfer_helper()
216 offset += cpy_len; in vsc_tp_xfer_helper()
223 offset += cpy_len; in vsc_tp_xfer_helper()
225 src += cpy_len; in vsc_tp_xfer_helper()
226 src_len -= cpy_len; in vsc_tp_xfer_helper()
[all …]
/linux-6.15/drivers/infiniband/hw/ocrdma/
H A Docrdma_stats.c53 int cpy_len = 0; in ocrdma_add_stat() local
56 cpy_len = strlen(buff); in ocrdma_add_stat()
58 if (pcur + cpy_len > start + OCRDMA_MAX_DBGFS_MEM) { in ocrdma_add_stat()
63 memcpy(pcur, buff, cpy_len); in ocrdma_add_stat()
64 return cpy_len; in ocrdma_add_stat()
/linux-6.15/drivers/spi/
H A Dspi-s3c64xx.c623 u32 cpy_len; in s3c64xx_wait_for_pio() local
670 cpy_len = s3c64xx_spi_wait_for_timeout(sdd, in s3c64xx_wait_for_pio()
676 buf, cpy_len / 4); in s3c64xx_wait_for_pio()
680 buf, cpy_len / 2); in s3c64xx_wait_for_pio()
684 buf, cpy_len); in s3c64xx_wait_for_pio()
688 buf = buf + cpy_len; in s3c64xx_wait_for_pio()
/linux-6.15/drivers/net/ethernet/cavium/liquidio/
H A Docteon_droq.c656 int cpy_len, idx = droq->read_idx; in octeon_droq_fast_process_packets() local
658 cpy_len = ((pkt_len + droq->buffer_size) in octeon_droq_fast_process_packets()
666 cpy_len, in octeon_droq_fast_process_packets()
677 pkt_len += cpy_len; in octeon_droq_fast_process_packets()
/linux-6.15/drivers/usb/gadget/
H A Dconfigfs.c830 ssize_t cpy_len; in gadget_string_s_store() local
835 cpy_len = strscpy(string->string, page, size); in gadget_string_s_store()
836 if (cpy_len > 0 && string->string[cpy_len - 1] == '\n') in gadget_string_s_store()
837 string->string[cpy_len - 1] = 0; in gadget_string_s_store()
/linux-6.15/drivers/net/can/usb/etas_es58x/
H A Des58x_core.c1308 size_t cpy_len; in es58x_handle_incomplete_cmd() local
1312 cpy_len = min_t(int, es58x_dev->param->rx_urb_cmd_max_len - in es58x_handle_incomplete_cmd()
1314 ret = es58x_copy_to_cmd_buf(es58x_dev, urb->transfer_buffer, cpy_len); in es58x_handle_incomplete_cmd()