Searched refs:copy_sz (Results 1 – 5 of 5) sorted by relevance
/linux-4.1.27/drivers/staging/ozwpan/ |
D | ozcdev.c | 505 int copy_sz; in oz_cdev_rx() local 538 copy_sz = OZ_RD_BUF_SZ - ix; in oz_cdev_rx() 539 if (copy_sz > len) in oz_cdev_rx() 540 copy_sz = len; in oz_cdev_rx() 541 memcpy(&ctx->rd_buf[ix], data, copy_sz); in oz_cdev_rx() 542 len -= copy_sz; in oz_cdev_rx() 543 ix += copy_sz; in oz_cdev_rx() 547 memcpy(ctx->rd_buf, data+copy_sz, len); in oz_cdev_rx()
|
/linux-4.1.27/drivers/net/ethernet/qlogic/netxen/ |
D | netxen_nic_ethtool.c | 903 int i, copy_sz; in netxen_get_dump_data() local 914 copy_sz = mdump->md_template_size; in netxen_get_dump_data() 917 for (i = 0; i < copy_sz/sizeof(u32); i++) in netxen_get_dump_data() 921 memcpy(buffer + copy_sz, in netxen_get_dump_data() 924 dump->len = copy_sz + mdump->md_capture_size; in netxen_get_dump_data()
|
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/ |
D | qlcnic_ethtool.c | 1678 int i, copy_sz; in qlcnic_get_dump_data() local 1695 copy_sz = fw_dump->tmpl_hdr_size; in qlcnic_get_dump_data() 1698 for (i = 0; i < copy_sz/sizeof(u32); i++) in qlcnic_get_dump_data() 1702 memcpy(buffer + copy_sz, fw_dump->data, fw_dump->size); in qlcnic_get_dump_data() 1703 dump->len = copy_sz + fw_dump->size; in qlcnic_get_dump_data()
|
/linux-4.1.27/drivers/message/fusion/ |
D | mptfc.c | 747 int copy_sz; in mptfc_GetFcPortPage0() local 785 copy_sz = min_t(int, sizeof(FCPortPage0_t), data_sz); in mptfc_GetFcPortPage0() 786 memcpy(pp0dest, ppage0_alloc, copy_sz); in mptfc_GetFcPortPage0()
|
D | mptbase.c | 4954 int copy_sz; in GetLanConfigPages() local 4982 copy_sz = min_t(int, sizeof(LANPage0_t), data_sz); in GetLanConfigPages() 4983 memcpy(&ioc->lan_cnfg_page0, ppage0_alloc, copy_sz); in GetLanConfigPages() 5027 copy_sz = min_t(int, sizeof(LANPage1_t), data_sz); in GetLanConfigPages() 5028 memcpy(&ioc->lan_cnfg_page1, ppage1_alloc, copy_sz); in GetLanConfigPages()
|