| /OK3568_Linux_fs/kernel/drivers/media/usb/cx231xx/ |
| H A D | cx231xx-vbi.c | 496 u32 bytes_to_copy; in cx231xx_copy_vbi_line() local 514 bytes_to_copy = dma_q->bytes_left_in_line; in cx231xx_copy_vbi_line() 515 if (bytes_to_copy > length) in cx231xx_copy_vbi_line() 516 bytes_to_copy = length; in cx231xx_copy_vbi_line() 519 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_vbi_line() 530 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_vbi_line() 533 return bytes_to_copy; in cx231xx_copy_vbi_line() 537 cx231xx_do_vbi_copy(dev, dma_q, p_line, bytes_to_copy); in cx231xx_copy_vbi_line() 539 dma_q->pos += bytes_to_copy; in cx231xx_copy_vbi_line() 540 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_vbi_line() [all …]
|
| H A D | cx231xx-video.c | 546 u32 bytes_to_copy; in cx231xx_copy_video_line() local 562 bytes_to_copy = dma_q->bytes_left_in_line; in cx231xx_copy_video_line() 563 if (bytes_to_copy > length) in cx231xx_copy_video_line() 564 bytes_to_copy = length; in cx231xx_copy_video_line() 567 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_video_line() 578 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_video_line() 581 return bytes_to_copy; in cx231xx_copy_video_line() 585 cx231xx_do_copy(dev, dma_q, p_line, bytes_to_copy); in cx231xx_copy_video_line() 587 dma_q->pos += bytes_to_copy; in cx231xx_copy_video_line() 588 dma_q->bytes_left_in_line -= bytes_to_copy; in cx231xx_copy_video_line() [all …]
|
| H A D | cx231xx-vbi.h | 48 u8 *p_buffer, u32 bytes_to_copy);
|
| H A D | cx231xx.h | 807 u8 *p_buffer, u32 bytes_to_copy);
|
| /OK3568_Linux_fs/kernel/fs/squashfs/ |
| H A D | block.c | 47 int bytes_to_copy = min_t(int, bvec->bv_len - offset, in copy_bio_to_actor() local 50 bytes_to_copy = min_t(int, bytes_to_copy, in copy_bio_to_actor() 54 bytes_to_copy); in copy_bio_to_actor() 56 actor_offset += bytes_to_copy; in copy_bio_to_actor() 57 copied_bytes += bytes_to_copy; in copy_bio_to_actor() 58 offset += bytes_to_copy; in copy_bio_to_actor()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_indep_power/ |
| H A D | bcmstdlib_s.c | 271 size_t bytes_to_copy = 0; in strlcat_s() local 296 bytes_to_copy = MIN(slen - (size_t)(s - src), n - 1); in strlcat_s() 297 (void)memcpy(d, s, bytes_to_copy); in strlcat_s() 298 d += bytes_to_copy; in strlcat_s() 306 return (dlen + bytes_to_copy); in strlcat_s()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/infineon/ |
| H A D | bcmstdlib_s.c | 272 size_t bytes_to_copy = 0; in strlcat_s() local 297 bytes_to_copy = MIN(slen - (size_t)(s - src), n - 1); in strlcat_s() 298 (void)memcpy(d, s, bytes_to_copy); in strlcat_s() 299 d += bytes_to_copy; in strlcat_s() 307 return (dlen + bytes_to_copy); in strlcat_s()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/ |
| H A D | bcmstdlib_s.c | 272 size_t bytes_to_copy = 0; in strlcat_s() local 297 bytes_to_copy = MIN(slen - (size_t)(s - src), n - 1); in strlcat_s() 298 (void)memcpy(d, s, bytes_to_copy); in strlcat_s() 299 d += bytes_to_copy; in strlcat_s() 307 return (dlen + bytes_to_copy); in strlcat_s()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/ |
| H A D | bcmstdlib_s.c | 272 size_t bytes_to_copy = 0; in strlcat_s() local 297 bytes_to_copy = MIN(slen - (size_t)(s - src), n - 1); in strlcat_s() 298 (void)memcpy(d, s, bytes_to_copy); in strlcat_s() 299 d += bytes_to_copy; in strlcat_s() 307 return (dlen + bytes_to_copy); in strlcat_s()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/ |
| H A D | bcmstdlib_s.c | 262 size_t bytes_to_copy = 0; in strlcat_s() local 287 bytes_to_copy = MIN(slen - (size_t)(s - src), n - 1); in strlcat_s() 288 (void)memcpy(d, s, bytes_to_copy); in strlcat_s() 289 d += bytes_to_copy; in strlcat_s() 297 return (dlen + bytes_to_copy); in strlcat_s()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/ |
| H A D | bcmstdlib_s.c | 262 size_t bytes_to_copy = 0; in strlcat_s() local 287 bytes_to_copy = MIN(slen - (size_t)(s - src), n - 1); in strlcat_s() 288 (void)memcpy(d, s, bytes_to_copy); in strlcat_s() 289 d += bytes_to_copy; in strlcat_s() 297 return (dlen + bytes_to_copy); in strlcat_s()
|
| /OK3568_Linux_fs/kernel/fs/verity/ |
| H A D | read_metadata.c | 42 unsigned int bytes_to_copy = min_t(u64, end_offset - offset, in fsverity_read_merkle_tree() local 57 if (copy_to_user(buf, virt + offs_in_page, bytes_to_copy)) { in fsverity_read_merkle_tree() 66 retval += bytes_to_copy; in fsverity_read_merkle_tree() 67 buf += bytes_to_copy; in fsverity_read_merkle_tree() 68 offset += bytes_to_copy; in fsverity_read_merkle_tree()
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | exec.c | 556 int offset, bytes_to_copy; in copy_strings() local 568 bytes_to_copy = offset; in copy_strings() 569 if (bytes_to_copy > len) in copy_strings() 570 bytes_to_copy = len; in copy_strings() 572 offset -= bytes_to_copy; in copy_strings() 573 pos -= bytes_to_copy; in copy_strings() 574 str -= bytes_to_copy; in copy_strings() 575 len -= bytes_to_copy; in copy_strings() 596 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) { in copy_strings() 632 unsigned int bytes_to_copy = min_t(unsigned int, len, in copy_string_kernel() local [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/brocade/bna/ |
| H A D | bfa_msgq.c | 59 cmdq->bytes_to_copy = 0; in cmdq_sm_stopped_entry() 260 if (cmdq->bytes_to_copy) in bfa_msgq_cmdq_copy_next() 272 cmdq->bytes_to_copy = ntohs(req->len); in bfa_msgq_cmdq_copy_req() 287 copied = (cmdq->bytes_to_copy >= BFI_CMD_COPY_SZ) ? BFI_CMD_COPY_SZ : in bfa_msgq_cmdq_copy_rsp() 288 cmdq->bytes_to_copy; in bfa_msgq_cmdq_copy_rsp() 294 cmdq->bytes_to_copy -= copied; in bfa_msgq_cmdq_copy_rsp()
|
| H A D | bfa_msgq.h | 70 int bytes_to_copy; member
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/vmwgfx/ |
| H A D | vmwgfx_blit.c | 360 u32 bytes_to_copy) in vmw_bo_cpu_blit_line() argument 364 while (bytes_to_copy) { in vmw_bo_cpu_blit_line() 365 u32 copy_size = bytes_to_copy; in vmw_bo_cpu_blit_line() 415 bytes_to_copy -= copy_size; in vmw_bo_cpu_blit_line()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gt/uc/ |
| H A D | intel_guc_log.c | 215 unsigned int buffer_size, read_offset, write_offset, bytes_to_copy, full_cnt; in guc_read_update_log_buffer() local 299 bytes_to_copy = buffer_size - read_offset; in guc_read_update_log_buffer() 301 bytes_to_copy = write_offset - read_offset; in guc_read_update_log_buffer() 304 src_data + read_offset, bytes_to_copy); in guc_read_update_log_buffer()
|
| /OK3568_Linux_fs/kernel/tools/bpf/bpftool/ |
| H A D | btf_dumper.c | 321 int bytes_to_copy; in btf_dumper_bitfield() local 325 bytes_to_copy = BITS_ROUNDUP_BYTES(bits_to_copy); in btf_dumper_bitfield() 327 memcpy(print_num, data, bytes_to_copy); in btf_dumper_bitfield()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/marvell/mwifiex/ |
| H A D | scan.c | 1224 u8 bytes_to_copy; in mwifiex_update_bss_desc_with_ie() local 1348 bytes_to_copy = in mwifiex_update_bss_desc_with_ie() 1352 bytes_to_copy = element_len; in mwifiex_update_bss_desc_with_ie() 1356 memcpy(rate, current_ptr + 2, bytes_to_copy); in mwifiex_update_bss_desc_with_ie() 1360 memcpy(rate, current_ptr + 2, bytes_to_copy); in mwifiex_update_bss_desc_with_ie()
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/qlogic/qed/ |
| H A D | qed_mcp.c | 3018 u32 bytes_left = len, offset = 0, bytes_to_copy, read_len = 0; in qed_mcp_nvm_read() local 3029 bytes_to_copy = min_t(u32, bytes_left, MCP_DRV_NVM_BUF_LEN); in qed_mcp_nvm_read() 3034 (bytes_to_copy << in qed_mcp_nvm_read() 3162 u32 bytes_left, bytes_to_copy, buf_size, nvm_offset = 0; in qed_mcp_phy_sfp_read() local 3175 bytes_to_copy = min_t(u32, bytes_left, in qed_mcp_phy_sfp_read() 3182 nvm_offset |= (bytes_to_copy << in qed_mcp_phy_sfp_read()
|
| H A D | qed_debug.c | 3944 u32 ret_mcp_resp, ret_mcp_param, ret_read_size, bytes_to_copy; in qed_nvram_read() local 3954 bytes_to_copy = in qed_nvram_read() 3962 SET_MFW_FIELD(param, DRV_MB_PARAM_NVM_LEN, bytes_to_copy); in qed_nvram_read()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/nxp/mlan/ |
| H A D | mlan_scan.c | 1733 t_u8 bytes_to_copy; in wlan_interpret_bss_desc_with_ie() local 2028 bytes_to_copy = (WLAN_SUPPORTED_RATES - in wlan_interpret_bss_desc_with_ie() 2031 bytes_to_copy = element_len; in wlan_interpret_bss_desc_with_ie() 2037 bytes_to_copy, bytes_to_copy); in wlan_interpret_bss_desc_with_ie() 2042 bytes_to_copy, bytes_to_copy); in wlan_interpret_bss_desc_with_ie()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/mvl88w8977/mlan/ |
| H A D | mlan_scan.c | 1515 t_u8 bytes_to_copy; in wlan_interpret_bss_desc_with_ie() local 1806 bytes_to_copy = in wlan_interpret_bss_desc_with_ie() 1810 bytes_to_copy = element_len; in wlan_interpret_bss_desc_with_ie() 1816 bytes_to_copy); in wlan_interpret_bss_desc_with_ie() 1821 bytes_to_copy); in wlan_interpret_bss_desc_with_ie()
|
| /OK3568_Linux_fs/kernel/drivers/scsi/ |
| H A D | ipr.c | 3143 u32 max_dump_size, bytes_to_copy, bytes_copied, rc; in ipr_get_ioa_dump() local 3212 bytes_to_copy = offsetof(struct ipr_sdt, entry) + in ipr_get_ioa_dump() 3215 bytes_to_copy / sizeof(__be32)); in ipr_get_ioa_dump() 3252 bytes_to_copy = be32_to_cpu(sdt->entry[i].end_token); in ipr_get_ioa_dump() 3258 bytes_to_copy = end_off - start_off; in ipr_get_ioa_dump() 3263 if (bytes_to_copy > max_dump_size) { in ipr_get_ioa_dump() 3270 bytes_to_copy); in ipr_get_ioa_dump() 3274 if (bytes_copied != bytes_to_copy) { in ipr_get_ioa_dump()
|
| /OK3568_Linux_fs/buildroot/package/uclibc/ |
| H A D | 0001-libc-string-arm-Support-using-glibc-neon-version-of-.patch | 424 + /* TMP1 gets (max_bytes - bytes_to_copy), where max_bytes is
|