Searched refs:bytes_to_copy (Results 1 – 11 of 11) sorted by relevance
/linux-4.1.27/drivers/media/usb/cx231xx/ |
D | cx231xx-vbi.c | 544 u32 bytes_to_copy; in cx231xx_copy_vbi_line() local 562 bytes_to_copy = dma_q->bytes_left_in_line; in cx231xx_copy_vbi_line() 563 if (bytes_to_copy > length) in cx231xx_copy_vbi_line() 564 bytes_to_copy = length; in cx231xx_copy_vbi_line() 567 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_vbi_line() 578 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_vbi_line() 581 return bytes_to_copy; in cx231xx_copy_vbi_line() 585 cx231xx_do_vbi_copy(dev, dma_q, p_line, bytes_to_copy); in cx231xx_copy_vbi_line() 587 dma_q->pos += bytes_to_copy; in cx231xx_copy_vbi_line() 588 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_vbi_line() [all …]
|
D | cx231xx-vbi.h | 60 u8 *p_buffer, u32 bytes_to_copy);
|
D | cx231xx-video.c | 560 u32 bytes_to_copy; in cx231xx_copy_video_line() local 576 bytes_to_copy = dma_q->bytes_left_in_line; in cx231xx_copy_video_line() 577 if (bytes_to_copy > length) in cx231xx_copy_video_line() 578 bytes_to_copy = length; in cx231xx_copy_video_line() 581 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_video_line() 592 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_video_line() 595 return bytes_to_copy; in cx231xx_copy_video_line() 599 cx231xx_do_copy(dev, dma_q, p_line, bytes_to_copy); in cx231xx_copy_video_line() 601 dma_q->pos += bytes_to_copy; in cx231xx_copy_video_line() 602 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_video_line() [all …]
|
D | cx231xx.h | 825 u8 *p_buffer, u32 bytes_to_copy);
|
/linux-4.1.27/drivers/net/ethernet/brocade/bna/ |
D | bfa_msgq.c | 67 cmdq->bytes_to_copy = 0; in cmdq_sm_stopped_entry() 267 if (cmdq->bytes_to_copy) in bfa_msgq_cmdq_copy_next() 279 cmdq->bytes_to_copy = ntohs(req->len); in bfa_msgq_cmdq_copy_req() 294 copied = (cmdq->bytes_to_copy >= BFI_CMD_COPY_SZ) ? BFI_CMD_COPY_SZ : in bfa_msgq_cmdq_copy_rsp() 295 cmdq->bytes_to_copy; in bfa_msgq_cmdq_copy_rsp() 301 cmdq->bytes_to_copy -= copied; in bfa_msgq_cmdq_copy_rsp()
|
D | bfa_msgq.h | 78 int bytes_to_copy; member
|
/linux-4.1.27/fs/ |
D | exec.c | 486 int offset, bytes_to_copy; in copy_strings() local 498 bytes_to_copy = offset; in copy_strings() 499 if (bytes_to_copy > len) in copy_strings() 500 bytes_to_copy = len; in copy_strings() 502 offset -= bytes_to_copy; in copy_strings() 503 pos -= bytes_to_copy; in copy_strings() 504 str -= bytes_to_copy; in copy_strings() 505 len -= bytes_to_copy; in copy_strings() 526 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) { in copy_strings()
|
/linux-4.1.27/drivers/net/wireless/mwifiex/ |
D | scan.c | 1160 u8 bytes_to_copy; in mwifiex_update_bss_desc_with_ie() local 1266 bytes_to_copy = in mwifiex_update_bss_desc_with_ie() 1270 bytes_to_copy = element_len; in mwifiex_update_bss_desc_with_ie() 1274 memcpy(rate, current_ptr + 2, bytes_to_copy); in mwifiex_update_bss_desc_with_ie() 1278 memcpy(rate, current_ptr + 2, bytes_to_copy); in mwifiex_update_bss_desc_with_ie()
|
/linux-4.1.27/drivers/scsi/mpt3sas/ |
D | mpt3sas_transport.c | 2067 u32 bytes_to_copy = in _transport_smp_handler() local 2070 if (bytes_to_copy <= bvec.bv_len) { in _transport_smp_handler() 2073 offset, bytes_to_copy); in _transport_smp_handler() 2079 bytes_to_copy -= bvec.bv_len; in _transport_smp_handler()
|
/linux-4.1.27/drivers/scsi/mpt2sas/ |
D | mpt2sas_transport.c | 2106 u32 bytes_to_copy = in _transport_smp_handler() local 2109 if (bytes_to_copy <= bvec.bv_len) { in _transport_smp_handler() 2112 offset, bytes_to_copy); in _transport_smp_handler() 2118 bytes_to_copy -= bvec.bv_len; in _transport_smp_handler()
|
/linux-4.1.27/drivers/scsi/ |
D | ipr.c | 3066 u32 max_dump_size, bytes_to_copy, bytes_copied, rc; in ipr_get_ioa_dump() local 3135 bytes_to_copy = offsetof(struct ipr_sdt, entry) + in ipr_get_ioa_dump() 3138 bytes_to_copy / sizeof(__be32)); in ipr_get_ioa_dump() 3175 bytes_to_copy = be32_to_cpu(sdt->entry[i].end_token); in ipr_get_ioa_dump() 3181 bytes_to_copy = end_off - start_off; in ipr_get_ioa_dump() 3186 if (bytes_to_copy > max_dump_size) { in ipr_get_ioa_dump() 3193 bytes_to_copy); in ipr_get_ioa_dump() 3197 if (bytes_copied != bytes_to_copy) { in ipr_get_ioa_dump()
|