Searched refs:bytes_to_copy (Results 1 – 7 of 7) sorted by relevance
/illumos-gate/usr/src/cmd/ndmpd/tlm/ |
H A D | tlm_traverse.c | 1066 u_longlong_t bytes_to_copy; in filecopy() local 1094 bytes_to_copy = src_attr.st_size; in filecopy() 1095 while (bytes_to_copy) { in filecopy() 1096 if (bytes_to_copy > BUFSIZE) in filecopy() 1099 nbytes = bytes_to_copy; in filecopy() 1104 bytes_to_copy -= nbytes; in filecopy() 1110 if (bytes_to_copy > 0) { in filecopy()
|
/illumos-gate/usr/src/lib/libldap5/sources/ldap/ber/ |
H A D | io.c | 1024 int bytes_to_copy = 0; in read_bytes() local 1027 bytes_to_copy = bytes_to_read; in read_bytes() 1029 bytes_to_copy = (b->length - b->offset); in read_bytes() 1031 if (1 == bytes_to_copy) { in read_bytes() 1034 if (0 == bytes_to_copy) { in read_bytes() 1038 memcpy(return_buffer,b->p+b->offset,bytes_to_copy); in read_bytes() 1039 b->offset += bytes_to_copy; in read_bytes() 1041 return bytes_to_copy; in read_bytes()
|
/illumos-gate/usr/src/cmd/hal/hald/ |
H A D | device_info.c | 1332 int bytes_to_copy; in cdata() local 1343 bytes_to_copy = len; in cdata() 1344 if (bytes_to_copy > bytes_left) in cdata() 1345 bytes_to_copy = bytes_left; in cdata() 1347 if (bytes_to_copy > 0) in cdata() 1349 bytes_to_copy); in cdata() 1351 pc->cdata_buf_len += bytes_to_copy; in cdata()
|
/illumos-gate/usr/src/uts/common/io/qede/ |
H A D | qede_gld.c | 1470 uint32_t hdr_size = 24, bytes_to_copy, copy_len = 0; local 1498 bytes_to_copy = size - copy_len; 1510 if (copy_len > bytes_to_copy) { 1512 bytes_to_copy); 1521 bytes_to_copy = bytes_to_copy - copy_len; 1576 bytes_to_copy = buf_size - copy_len; 1587 if (copy_len > bytes_to_copy){ 1589 bytes_to_copy); 1591 bytes_to_copy; 1599 bytes_to_copy = bytes_to_copy - copy_len;
|
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/ |
H A D | lm_l4rx.c | 2523 u16_t free_bytes_to_copy = 0, bytes_to_copy = 0, gen_buf_offset = 0; in lm_squeeze_rx_buffer_list() local 2538 bytes_to_copy = gen_buf_copy_from->placed_bytes; in lm_squeeze_rx_buffer_list() 2539 if (bytes_to_copy <= free_bytes_to_copy) { in lm_squeeze_rx_buffer_list() 2541 gen_buf_copy_from->buf_virt, bytes_to_copy); in lm_squeeze_rx_buffer_list() 2542 free_bytes_to_copy -= bytes_to_copy; in lm_squeeze_rx_buffer_list() 2543 gen_buf_copy_to->placed_bytes += bytes_to_copy; in lm_squeeze_rx_buffer_list() 2555 … gen_buf_copy_from->buf_virt + free_bytes_to_copy, bytes_to_copy - free_bytes_to_copy); in lm_squeeze_rx_buffer_list()
|
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/ |
H A D | ecore_mcp.c | 2873 u32 bytes_left, offset, bytes_to_copy, buf_size; in ecore_mcp_nvm_read() local 2889 bytes_to_copy = OSAL_MIN_T(u32, bytes_left, in ecore_mcp_nvm_read() 2892 (bytes_to_copy << in ecore_mcp_nvm_read() 3135 u32 bytes_left, bytes_to_copy, buf_size; in ecore_mcp_phy_sfp_read() local 3148 bytes_to_copy = OSAL_MIN_T(u32, bytes_left, in ecore_mcp_phy_sfp_read() 3158 (bytes_to_copy << DRV_MB_PARAM_TRANSCEIVER_SIZE_SHIFT); in ecore_mcp_phy_sfp_read()
|
H A D | ecore_dbg_fw_funcs.c | 4432 u32 ret_mcp_resp, ret_mcp_param, ret_read_size, bytes_to_copy; in ecore_nvram_read() local 4439 bytes_to_copy = (bytes_left > MCP_DRV_NVM_BUF_LEN) ? MCP_DRV_NVM_BUF_LEN : bytes_left; in ecore_nvram_read() 4442 …t, DRV_MSG_CODE_NVM_READ_NVRAM, (nvram_offset_bytes + read_offset) | (bytes_to_copy << DRV_MB_PARA… in ecore_nvram_read()
|