Home
last modified time | relevance | path

Searched refs:src_offset (Results 1 – 18 of 18) sorted by relevance

/openbmc/qemu/hw/acpi/
H A Dbios-linker-loader.c89 uint32_t src_offset; member
274 uint32_t src_offset) in bios_linker_loader_add_pointer() argument
287 assert(src_offset < source_file->blob->len); in bios_linker_loader_add_pointer()
300 le_src_offset = cpu_to_le64(src_offset); in bios_linker_loader_add_pointer()
328 uint32_t src_offset) in bios_linker_loader_write_pointer() argument
335 assert(src_offset < source_file->blob->len); in bios_linker_loader_write_pointer()
343 entry.wr_pointer.src_offset = cpu_to_le32(src_offset); in bios_linker_loader_write_pointer()
/openbmc/qemu/include/hw/acpi/
H A Dbios-linker-loader.h29 uint32_t src_offset);
36 uint32_t src_offset);
/openbmc/qemu/hw/net/
H A Dnet_tx_pkt.c538 int *src_idx, size_t *src_offset, size_t src_len, in net_tx_pkt_fetch_fragment() argument
557 dst[*dst_idx].iov_base = src[*src_idx].iov_base + *src_offset; in net_tx_pkt_fetch_fragment()
558 dst[*dst_idx].iov_len = MIN(src[*src_idx].iov_len - *src_offset, in net_tx_pkt_fetch_fragment()
561 *src_offset += dst[*dst_idx].iov_len; in net_tx_pkt_fetch_fragment()
564 if (*src_offset == src[*src_idx].iov_len) { in net_tx_pkt_fetch_fragment()
565 *src_offset = 0; in net_tx_pkt_fetch_fragment()
593 size_t *src_offset, in net_tx_pkt_tcp_fragment_init() argument
621 *src_offset = l4->iov_len - bytes_read; in net_tx_pkt_tcp_fragment_init()
623 *src_offset); in net_tx_pkt_tcp_fragment_init()
685 int *src_idx, size_t *src_offset, in net_tx_pkt_udp_fragment_init() argument
[all …]
/openbmc/qemu/include/block/
H A Dblock_int-io.h117 bdrv_co_copy_range_from(BdrvChild *src, int64_t src_offset,
122 bdrv_co_copy_range_to(BdrvChild *src, int64_t src_offset,
H A Dblock-io.h328 bdrv_co_copy_range(BdrvChild *src, int64_t src_offset,
H A Dblock_int-common.h611 BlockDriverState *bs, BdrvChild *src, int64_t src_offset,
/openbmc/qemu/block/
H A Draw-format.c575 BdrvChild *src, int64_t src_offset, in raw_co_copy_range_from() argument
582 ret = raw_adjust_offset(bs, &src_offset, bytes, false); in raw_co_copy_range_from()
586 return bdrv_co_copy_range_from(bs->file, src_offset, dst, dst_offset, in raw_co_copy_range_from()
592 BdrvChild *src, int64_t src_offset, in raw_co_copy_range_to() argument
603 return bdrv_co_copy_range_to(src, src_offset, bs->file, dst_offset, bytes, in raw_co_copy_range_to()
H A Dio.c3449 BdrvChild *src, int64_t src_offset, BdrvChild *dst, in bdrv_co_copy_range_internal() argument
3478 ret = bdrv_check_request32(src_offset, bytes, NULL, 0); in bdrv_co_copy_range_internal()
3491 tracked_request_begin(&req, src->bs, src_offset, bytes, in bdrv_co_copy_range_internal()
3499 src, src_offset, in bdrv_co_copy_range_internal()
3514 src, src_offset, in bdrv_co_copy_range_internal()
3531 int coroutine_fn bdrv_co_copy_range_from(BdrvChild *src, int64_t src_offset, in bdrv_co_copy_range_from() argument
3539 trace_bdrv_co_copy_range_from(src, src_offset, dst, dst_offset, bytes, in bdrv_co_copy_range_from()
3541 return bdrv_co_copy_range_internal(src, src_offset, dst, dst_offset, in bdrv_co_copy_range_from()
3549 int coroutine_fn bdrv_co_copy_range_to(BdrvChild *src, int64_t src_offset, in bdrv_co_copy_range_to() argument
3557 trace_bdrv_co_copy_range_to(src, src_offset, dst, dst_offset, bytes, in bdrv_co_copy_range_to()
[all …]
H A Discsi.c2197 BdrvChild *src, int64_t src_offset, in iscsi_co_copy_range_from() argument
2202 return bdrv_co_copy_range_to(src, src_offset, dst, dst_offset, bytes, in iscsi_co_copy_range_from()
2309 const int src_offset = XCOPY_DESC_OFFSET; in iscsi_xcopy_data() local
2326 iscsi_populate_target_desc(&buf[src_offset], src); in iscsi_xcopy_data()
2336 BdrvChild *src, int64_t src_offset, in iscsi_co_copy_range_to() argument
2359 if (!is_byte_request_lun_aligned(src_offset, bytes, src_lun)) { in iscsi_co_copy_range_to()
2373 src_lun, src_offset / block_size, in iscsi_co_copy_range_to()
2404 trace_iscsi_xcopy(src_lun, src_offset, dst_lun, dst_offset, bytes, r); in iscsi_co_copy_range_to()
H A Dqcow2.c4150 BdrvChild *src, int64_t src_offset, in qcow2_co_copy_range_from() argument
4171 ret = qcow2_get_host_offset(bs, src_offset, &cur_bytes, in qcow2_co_copy_range_from()
4182 if (src_offset >= backing_length) { in qcow2_co_copy_range_from()
4186 cur_bytes = MIN(cur_bytes, backing_length - src_offset); in qcow2_co_copy_range_from()
4187 copy_offset = src_offset; in qcow2_co_copy_range_from()
4221 src_offset += cur_bytes; in qcow2_co_copy_range_from()
4233 BdrvChild *src, int64_t src_offset, in qcow2_co_copy_range_to() argument
4271 ret = bdrv_co_copy_range_to(src, src_offset, s->data_file, host_offset, in qcow2_co_copy_range_to()
4284 src_offset += cur_bytes; in qcow2_co_copy_range_to()
H A Dtrace-events18 bdrv_co_copy_range_from(void *src, int64_t src_offset, void *dst, int64_t dst_offset, int64_t bytes…
19 bdrv_co_copy_range_to(void *src, int64_t src_offset, void *dst, int64_t dst_offset, int64_t bytes, …
H A Dfile-posix.c3949 BlockDriverState *bs, BdrvChild *src, int64_t src_offset, in raw_co_copy_range_from() argument
3953 return bdrv_co_copy_range_to(src, src_offset, dst, dst_offset, bytes, in raw_co_copy_range_from()
3959 BdrvChild *src, int64_t src_offset, in raw_co_copy_range_to() argument
3982 .aio_offset = src_offset, in raw_co_copy_range_to()
/openbmc/qemu/hw/display/
H A Dati_int.h65 uint32_t src_offset; member
H A Dati_2d.c86 s->regs.src_offset, s->regs.dst_offset, s->regs.default_offset, in ati_2d_blt()
107 s->regs.src_offset : s->regs.default_offset); in ati_2d_blt()
H A Dati.c466 val = s->regs.src_offset; in ati_mm_read()
827 s->regs.src_offset = (data & 0x1fffff) << 5; in ati_mm_write()
831 s->regs.src_offset = (data & 0x3fffff) << 10; in ati_mm_write()
890 s->regs.src_offset = data & 0xfffffff0; in ati_mm_write()
892 s->regs.src_offset = data & 0xfffffc00; in ati_mm_write()
H A Dvirtio-gpu.c436 uint32_t src_offset, dst_offset, stride; in virtio_gpu_transfer_to_host_2d() local
472 src_offset = t2d.offset + stride * h; in virtio_gpu_transfer_to_host_2d()
475 iov_to_buf(res->iov, res->iov_cnt, src_offset, in virtio_gpu_transfer_to_host_2d()
480 src_offset = t2d.offset; in virtio_gpu_transfer_to_host_2d()
482 iov_to_buf(res->iov, res->iov_cnt, src_offset, in virtio_gpu_transfer_to_host_2d()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/nodejs/nodejs/
H A D0001-liftoff-Correct-function-signatures.patch34 inline void MoveStackValue(uint32_t dst_offset, uint32_t src_offset,
/openbmc/qemu/contrib/vhost-user-gpu/
H A Dvhost-user-gpu.c599 uint32_t src_offset, dst_offset, stride; in vg_transfer_to_host_2d() local
637 src_offset = t2d.offset + stride * h; in vg_transfer_to_host_2d()
640 iov_to_buf(res->iov, res->iov_cnt, src_offset, in vg_transfer_to_host_2d()