Searched refs:bytes_to_copy (Results 1 – 10 of 10) sorted by relevance
/linux-4.4.14/drivers/media/usb/cx231xx/ |
D | cx231xx-vbi.c | 543 u32 bytes_to_copy; in cx231xx_copy_vbi_line() local 561 bytes_to_copy = dma_q->bytes_left_in_line; in cx231xx_copy_vbi_line() 562 if (bytes_to_copy > length) in cx231xx_copy_vbi_line() 563 bytes_to_copy = length; in cx231xx_copy_vbi_line() 566 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_vbi_line() 577 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_vbi_line() 580 return bytes_to_copy; in cx231xx_copy_vbi_line() 584 cx231xx_do_vbi_copy(dev, dma_q, p_line, bytes_to_copy); in cx231xx_copy_vbi_line() 586 dma_q->pos += bytes_to_copy; in cx231xx_copy_vbi_line() 587 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 | 826 u8 *p_buffer, u32 bytes_to_copy);
|
/linux-4.4.14/drivers/net/ethernet/brocade/bna/ |
D | bfa_msgq.c | 67 cmdq->bytes_to_copy = 0; in cmdq_sm_stopped_entry() 268 if (cmdq->bytes_to_copy) in bfa_msgq_cmdq_copy_next() 280 cmdq->bytes_to_copy = ntohs(req->len); in bfa_msgq_cmdq_copy_req() 295 copied = (cmdq->bytes_to_copy >= BFI_CMD_COPY_SZ) ? BFI_CMD_COPY_SZ : in bfa_msgq_cmdq_copy_rsp() 296 cmdq->bytes_to_copy; in bfa_msgq_cmdq_copy_rsp() 302 cmdq->bytes_to_copy -= copied; in bfa_msgq_cmdq_copy_rsp()
|
D | bfa_msgq.h | 78 int bytes_to_copy; member
|
/linux-4.4.14/fs/ |
D | exec.c | 492 int offset, bytes_to_copy; in copy_strings() local 504 bytes_to_copy = offset; in copy_strings() 505 if (bytes_to_copy > len) in copy_strings() 506 bytes_to_copy = len; in copy_strings() 508 offset -= bytes_to_copy; in copy_strings() 509 pos -= bytes_to_copy; in copy_strings() 510 str -= bytes_to_copy; in copy_strings() 511 len -= bytes_to_copy; in copy_strings() 532 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) { in copy_strings()
|
/linux-4.4.14/drivers/net/wireless/mwifiex/ |
D | scan.c | 1195 u8 bytes_to_copy; in mwifiex_update_bss_desc_with_ie() local 1302 bytes_to_copy = in mwifiex_update_bss_desc_with_ie() 1306 bytes_to_copy = element_len; in mwifiex_update_bss_desc_with_ie() 1310 memcpy(rate, current_ptr + 2, bytes_to_copy); in mwifiex_update_bss_desc_with_ie() 1314 memcpy(rate, current_ptr + 2, bytes_to_copy); in mwifiex_update_bss_desc_with_ie()
|
/linux-4.4.14/drivers/scsi/mpt3sas/ |
D | mpt3sas_transport.c | 2091 u32 bytes_to_copy = in _transport_smp_handler() local 2094 if (bytes_to_copy <= bvec.bv_len) { in _transport_smp_handler() 2097 offset, bytes_to_copy); in _transport_smp_handler() 2103 bytes_to_copy -= bvec.bv_len; in _transport_smp_handler()
|
/linux-4.4.14/drivers/scsi/ |
D | ipr.c | 3067 u32 max_dump_size, bytes_to_copy, bytes_copied, rc; in ipr_get_ioa_dump() local 3136 bytes_to_copy = offsetof(struct ipr_sdt, entry) + in ipr_get_ioa_dump() 3139 bytes_to_copy / sizeof(__be32)); in ipr_get_ioa_dump() 3176 bytes_to_copy = be32_to_cpu(sdt->entry[i].end_token); in ipr_get_ioa_dump() 3182 bytes_to_copy = end_off - start_off; in ipr_get_ioa_dump() 3187 if (bytes_to_copy > max_dump_size) { in ipr_get_ioa_dump() 3194 bytes_to_copy); in ipr_get_ioa_dump() 3198 if (bytes_copied != bytes_to_copy) { in ipr_get_ioa_dump()
|