Home
last modified time | relevance | path

Searched refs:byte_off (Results 1 – 4 of 4) sorted by relevance

/src/stand/libsa/
H A Dcd9660read.c317 off_t byte_off; in cd9660_fsread() local
343 byte_off = fs_off & (ISO_DEFAULT_BLOCK_SIZE - 1); in cd9660_fsread()
350 if (remaining < ISO_DEFAULT_BLOCK_SIZE - byte_off) { in cd9660_fsread()
353 n = ISO_DEFAULT_BLOCK_SIZE - byte_off; in cd9660_fsread()
355 memcpy(s, blkbuf + byte_off, n); in cd9660_fsread()
/src/sys/dev/irdma/
H A Dirdma_uk.c373 u32 total_size = 0, byte_off; in irdma_uk_rdma_write() local
420 for (byte_off = IRDMA_BYTE_32; i < op_info->num_lo_sges; i++) { in irdma_uk_rdma_write()
421 qp->wqe_ops.iw_set_fragment(wqe, byte_off, in irdma_uk_rdma_write()
424 byte_off += 16; in irdma_uk_rdma_write()
430 qp->wqe_ops.iw_set_fragment(wqe, byte_off, NULL, in irdma_uk_rdma_write()
471 u32 i, byte_off, total_size = 0; in irdma_uk_rdma_read() local
508 for (i = 1, byte_off = IRDMA_BYTE_32; i < op_info->num_lo_sges; ++i) { in irdma_uk_rdma_read()
509 qp->wqe_ops.iw_set_fragment(wqe, byte_off, in irdma_uk_rdma_read()
512 byte_off += IRDMA_BYTE_16; in irdma_uk_rdma_read()
518 qp->wqe_ops.iw_set_fragment(wqe, byte_off, NULL, in irdma_uk_rdma_read()
[all …]
/src/contrib/ofed/libirdma/
H A Dirdma_uk.c373 u32 total_size = 0, byte_off; in irdma_uk_rdma_write() local
420 for (byte_off = IRDMA_BYTE_32; i < op_info->num_lo_sges; i++) { in irdma_uk_rdma_write()
421 qp->wqe_ops.iw_set_fragment(wqe, byte_off, in irdma_uk_rdma_write()
424 byte_off += 16; in irdma_uk_rdma_write()
430 qp->wqe_ops.iw_set_fragment(wqe, byte_off, NULL, in irdma_uk_rdma_write()
471 u32 i, byte_off, total_size = 0; in irdma_uk_rdma_read() local
508 for (i = 1, byte_off = IRDMA_BYTE_32; i < op_info->num_lo_sges; ++i) { in irdma_uk_rdma_read()
509 qp->wqe_ops.iw_set_fragment(wqe, byte_off, in irdma_uk_rdma_read()
512 byte_off += IRDMA_BYTE_16; in irdma_uk_rdma_read()
518 qp->wqe_ops.iw_set_fragment(wqe, byte_off, NULL, in irdma_uk_rdma_read()
[all …]
/src/crypto/openssl/ssl/quic/
H A Dquic_record_tx.c337 size_t num_iovec, idx, byte_off, bytes_remaining; member
358 cur->byte_off = 0; in iovec_cur_init()
383 l = cur->iovec[cur->idx].buf_len - cur->byte_off; in iovec_cur_get_buffer()
388 *buf = cur->iovec[cur->idx].buf + cur->byte_off; in iovec_cur_get_buffer()
389 cur->byte_off += l; in iovec_cur_get_buffer()
399 cur->byte_off = 0; in iovec_cur_get_buffer()