Home
last modified time | relevance | path

Searched refs:bytes_left (Results 1 – 8 of 8) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dqat_compress.c257 Cpa32U bytes_left; in qat_compress_impl() local
331 bytes_left = src_len; in qat_compress_impl()
334 while (bytes_left > 0) { in qat_compress_impl()
340 min((long)PAGE_SIZE - page_off, (long)bytes_left); in qat_compress_impl()
342 bytes_left -= flat_buf_src->dataLenInBytes; in qat_compress_impl()
351 bytes_left = dst_len; in qat_compress_impl()
354 while (bytes_left > 0) { in qat_compress_impl()
362 bytes_left -= flat_buf_dst->dataLenInBytes; in qat_compress_impl()
371 bytes_left = add_len; in qat_compress_impl()
374 while (bytes_left > 0) { in qat_compress_impl()
[all …]
H A Dqat_crypt.c301 Cpa32U bytes_left = 0; in qat_crypt() local
373 bytes_left = enc_len; in qat_crypt()
376 while (bytes_left > 0) { in qat_crypt()
383 bytes_left -= flat_src_buf->dataLenInBytes; in qat_crypt()
390 bytes_left = enc_len; in qat_crypt()
393 while (bytes_left > 0) { in qat_crypt()
401 bytes_left -= flat_dst_buf->dataLenInBytes; in qat_crypt()
474 Cpa32U bytes_left = 0; in qat_checksum() local
522 bytes_left = size; in qat_checksum()
525 while (bytes_left > 0) { in qat_checksum()
[all …]
/f-stack/freebsd/netinet/libalias/
H A Dalias_sctp.c1219 if (bytes_left == 0) in sctp_PktParser()
1272 int bytes_left; in GetAsconfVtags() local
1281 while((bytes_left >= param_size) && (bytes_left >= SN_VTAG_PARAM_SIZE)) { in GetAsconfVtags()
1300 bytes_left -= param_size; in GetAsconfVtags()
1333 int bytes_left = 0; in AddGlobalIPAddresses() local
1425 bytes_left -= param_size; in AddGlobalIPAddresses()
1495 int bytes_left; in RmGlobalIPAddresses() local
1552 bytes_left -= param_size; in RmGlobalIPAddresses()
1598 int bytes_left; in IsASCONFack() local
1616 bytes_left -= param_size; in IsASCONFack()
[all …]
/f-stack/dpdk/drivers/net/sfc/
H A Dsfc_tso.c61 size_t bytes_left = header_len; in sfc_tso_prepare_header() local
65 bytes_to_copy = MIN(bytes_left, m->data_len); in sfc_tso_prepare_header()
70 bytes_left -= bytes_to_copy; in sfc_tso_prepare_header()
73 if (bytes_left > 0) { in sfc_tso_prepare_header()
78 } while (bytes_left > 0); in sfc_tso_prepare_header()
/f-stack/dpdk/drivers/event/octeontx/
H A Dssovf_worker.h65 uint64_t bytes_left = wqe->s.w1.len - wqe->s.w5.size; in ssovf_octeontx_wqe_xtract_mseg() local
82 mbuf->data_len = bytes_left; in ssovf_octeontx_wqe_xtract_mseg()
86 bytes_left = bytes_left - buflink->w0.s.size; in ssovf_octeontx_wqe_xtract_mseg()
/f-stack/dpdk/drivers/net/qede/base/
H A Decore_mcp.c3127 u32 bytes_left, offset, bytes_to_copy, buf_size; in ecore_mcp_nvm_read() local
3136 bytes_left = len; in ecore_mcp_nvm_read()
3138 while (bytes_left > 0) { in ecore_mcp_nvm_read()
3139 bytes_to_copy = OSAL_MIN_T(u32, bytes_left, in ecore_mcp_nvm_read()
3165 if (bytes_left % 0x1000 < in ecore_mcp_nvm_read()
3166 (bytes_left - buf_size) % 0x1000) in ecore_mcp_nvm_read()
3170 bytes_left -= buf_size; in ecore_mcp_nvm_read()
3391 bytes_left = len; in ecore_mcp_phy_sfp_read()
3392 while (bytes_left > 0) { in ecore_mcp_phy_sfp_read()
3393 bytes_to_copy = OSAL_MIN_T(u32, bytes_left, in ecore_mcp_phy_sfp_read()
[all …]
/f-stack/freebsd/contrib/openzfs/lib/libzfs/
H A Dlibzfs_pool.c2764 size_t bytes_left, pos, rsz; in vdev_get_one_physpath() local
2773 bytes_left = physpath_size - pos; in vdev_get_one_physpath()
2776 rsz = snprintf(physpath + pos, bytes_left, format, tmppath); in vdev_get_one_physpath()
2779 if (rsz >= bytes_left) { in vdev_get_one_physpath()
2781 if (bytes_left != 0) { in vdev_get_one_physpath()
/f-stack/dpdk/drivers/net/qede/
H A Dqede_debug.c3962 s32 bytes_left = nvram_size_bytes; in qed_nvram_read() local
3971 (bytes_left > in qed_nvram_read()
3972 MCP_DRV_NVM_BUF_LEN) ? MCP_DRV_NVM_BUF_LEN : bytes_left; in qed_nvram_read()
3997 bytes_left -= ret_read_size; in qed_nvram_read()
3998 } while (bytes_left > 0); in qed_nvram_read()