Home
last modified time | relevance | path

Searched refs:bytes_copy (Results 1 – 25 of 88) sorted by relevance

1234

/dports/graphics/sane-backends/sane-backends-1.0.32/backend/genesys/
H A Dimage_buffer.cpp63 std::size_t bytes_copy = std::min<std::size_t>(out_data_end - out_data, available()); in get_data() local
64 std::memcpy(out_data, buffer_.data() + buffer_offset_, bytes_copy); in get_data()
65 out_data += bytes_copy; in get_data()
66 buffer_offset_ += bytes_copy; in get_data()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/quic/core/
H A Dquic_stream_sequencer_buffer.cc100 size_t bytes_copy = 0; in OnStreamData() local
101 if (!CopyStreamData(starting_offset, data, &bytes_copy, error_details)) { in OnStreamData()
104 *bytes_buffered += bytes_copy; in OnStreamData()
125 size_t bytes_copy = 0; in OnStreamData() local
128 &bytes_copy, error_details)) { in OnStreamData()
131 *bytes_buffered += bytes_copy; in OnStreamData()
139 size_t* bytes_copy, in CopyStreamData() argument
141 *bytes_copy = 0; in CopyStreamData()
210 *bytes_copy += bytes_to_copy; in CopyStreamData()
H A Dquic_stream_sequencer_buffer.h171 size_t* bytes_copy,
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/quic/core/
H A Dquic_stream_sequencer_buffer.cc151 size_t bytes_copy = 0; in OnStreamData() local
152 if (!CopyStreamData(starting_offset, data, &bytes_copy, error_details)) { in OnStreamData()
155 *bytes_buffered += bytes_copy; in OnStreamData()
176 size_t bytes_copy = 0; in OnStreamData() local
179 &bytes_copy, error_details)) { in OnStreamData()
182 *bytes_buffered += bytes_copy; in OnStreamData()
190 size_t* bytes_copy, in CopyStreamData() argument
192 *bytes_copy = 0; in CopyStreamData()
265 *bytes_copy += bytes_to_copy; in CopyStreamData()
H A Dquic_stream_sequencer_buffer.h172 size_t* bytes_copy,
/dports/devel/avro-c/avro-c-1.11.0/src/
H A Ddatum.c159 if (!bytes_copy) { in avro_bytes()
163 memcpy(bytes_copy, bytes, size); in avro_bytes()
167 avro_free(bytes_copy, size); in avro_bytes()
200 if (!bytes_copy) { in avro_bytes_set()
204 memcpy(bytes_copy, bytes, size); in avro_bytes_set()
207 avro_free(bytes_copy, size); in avro_bytes_set()
644 if (!bytes_copy) { in avro_fixed()
648 memcpy(bytes_copy, bytes, size); in avro_fixed()
687 if (!bytes_copy) { in avro_fixed_set()
691 memcpy(bytes_copy, bytes, size); in avro_fixed_set()
[all …]
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/lib/avro/src/
H A Ddatum.c159 if (!bytes_copy) { in avro_bytes()
163 memcpy(bytes_copy, bytes, size); in avro_bytes()
167 avro_free(bytes_copy, size); in avro_bytes()
200 if (!bytes_copy) { in avro_bytes_set()
204 memcpy(bytes_copy, bytes, size); in avro_bytes_set()
207 avro_free(bytes_copy, size); in avro_bytes_set()
644 if (!bytes_copy) { in avro_fixed()
648 memcpy(bytes_copy, bytes, size); in avro_fixed()
687 if (!bytes_copy) { in avro_fixed_set()
691 memcpy(bytes_copy, bytes, size); in avro_fixed_set()
[all …]
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/vt100-0.8.1/tests/
H A Dsplit-escapes.rs31 let bytes_copy = bytes.clone(); in test_splits() localVariable
32 let (start, end) = bytes_copy.split_at(i); in test_splits()
/dports/www/node10/node-v10.24.1/deps/v8/src/wasm/
H A Dwasm-engine.cc112 i::wasm::ModuleWireBytes bytes_copy(copy.get(), in AsyncCompile() local
114 module_object = SyncCompile(isolate, &thrower, bytes_copy); in AsyncCompile()
166 Isolate* isolate, std::unique_ptr<byte[]> bytes_copy, size_t length, in CreateAsyncCompileJob() argument
168 AsyncCompileJob* job = new AsyncCompileJob(isolate, std::move(bytes_copy), in CreateAsyncCompileJob()
H A Dwasm-engine.h98 std::unique_ptr<byte[]> bytes_copy,
H A Dmodule-compiler.h86 explicit AsyncCompileJob(Isolate* isolate, std::unique_ptr<byte[]> bytes_copy,
/dports/multimedia/mpv/mpv-0.34.1/audio/filter/
H A Daf_scaletempo.c123 int bytes_copy = MPMIN(bytes_needed, bytes_in); in fill_queue() local
124 if (bytes_copy > 0) { in fill_queue()
126 memcpy(s->buf_queue + s->bytes_queued, planes[0] + offset, bytes_copy); in fill_queue()
127 s->bytes_queued += bytes_copy; in fill_queue()
128 offset += bytes_copy; in fill_queue()
129 bytes_needed -= bytes_copy; in fill_queue()
/dports/lang/v8/v8-9.6.180.12/test/cctest/wasm/
H A Dtest-wasm-serialization.cc156 uint8_t* bytes_copy = zone()->NewArray<uint8_t>(uncompiled_bytes.size()); in SetUp() local
157 memcpy(bytes_copy, uncompiled_bytes.data(), uncompiled_bytes.size()); in SetUp()
158 wire_bytes_ = {bytes_copy, uncompiled_bytes.size()}; in SetUp()
/dports/multimedia/mencoder/mplayer-export-2021-12-29/libaf/
H A Daf_scaletempo.c108 int bytes_copy = FFMIN(s->bytes_queue - s->bytes_queued, bytes_in); in fill_queue() local
111 bytes_copy); in fill_queue()
112 s->bytes_queued += bytes_copy; in fill_queue()
113 offset += bytes_copy; in fill_queue()
/dports/multimedia/mplayer/mplayer-export-2021-12-29/libaf/
H A Daf_scaletempo.c108 int bytes_copy = FFMIN(s->bytes_queue - s->bytes_queued, bytes_in); in fill_queue() local
111 bytes_copy); in fill_queue()
112 s->bytes_queued += bytes_copy; in fill_queue()
113 offset += bytes_copy; in fill_queue()
/dports/security/rustscan/RustScan-2.0.1/cargo-crates/ring-0.16.15/crypto/
H A Dinternal.h262 static inline void bytes_copy(uint8_t out[], const uint8_t in[], size_t len) { in bytes_copy() function
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/scsi/csiostor/
H A Dcsio_scsi.c1494 uint32_t bytes_copy; in csio_scsi_copy_to_sgl() local
1523 bytes_copy = min((dma_buf->len - buf_off), in csio_scsi_copy_to_sgl()
1525 bytes_copy = min((uint32_t)(PAGE_SIZE - (sg_off & ~PAGE_MASK)), in csio_scsi_copy_to_sgl()
1526 bytes_copy); in csio_scsi_copy_to_sgl()
1536 sg_addr, sg_off, buf_addr, bytes_copy); in csio_scsi_copy_to_sgl()
1537 memcpy(sg_addr + (sg_off & ~PAGE_MASK), buf_addr, bytes_copy); in csio_scsi_copy_to_sgl()
1540 start_off += bytes_copy; in csio_scsi_copy_to_sgl()
1541 buf_off += bytes_copy; in csio_scsi_copy_to_sgl()
1542 bytes_left -= bytes_copy; in csio_scsi_copy_to_sgl()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/scsi/csiostor/
H A Dcsio_scsi.c1494 uint32_t bytes_copy; in csio_scsi_copy_to_sgl() local
1523 bytes_copy = min((dma_buf->len - buf_off), in csio_scsi_copy_to_sgl()
1525 bytes_copy = min((uint32_t)(PAGE_SIZE - (sg_off & ~PAGE_MASK)), in csio_scsi_copy_to_sgl()
1526 bytes_copy); in csio_scsi_copy_to_sgl()
1536 sg_addr, sg_off, buf_addr, bytes_copy); in csio_scsi_copy_to_sgl()
1537 memcpy(sg_addr + (sg_off & ~PAGE_MASK), buf_addr, bytes_copy); in csio_scsi_copy_to_sgl()
1540 start_off += bytes_copy; in csio_scsi_copy_to_sgl()
1541 buf_off += bytes_copy; in csio_scsi_copy_to_sgl()
1542 bytes_left -= bytes_copy; in csio_scsi_copy_to_sgl()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/scsi/csiostor/
H A Dcsio_scsi.c1494 uint32_t bytes_copy; in csio_scsi_copy_to_sgl() local
1523 bytes_copy = min((dma_buf->len - buf_off), in csio_scsi_copy_to_sgl()
1525 bytes_copy = min((uint32_t)(PAGE_SIZE - (sg_off & ~PAGE_MASK)), in csio_scsi_copy_to_sgl()
1526 bytes_copy); in csio_scsi_copy_to_sgl()
1536 sg_addr, sg_off, buf_addr, bytes_copy); in csio_scsi_copy_to_sgl()
1537 memcpy(sg_addr + (sg_off & ~PAGE_MASK), buf_addr, bytes_copy); in csio_scsi_copy_to_sgl()
1540 start_off += bytes_copy; in csio_scsi_copy_to_sgl()
1541 buf_off += bytes_copy; in csio_scsi_copy_to_sgl()
1542 bytes_left -= bytes_copy; in csio_scsi_copy_to_sgl()
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/ring-0.16.12/crypto/
H A Dinternal.h282 static inline void bytes_copy(uint8_t out[], const uint8_t in[], size_t len) { in bytes_copy() function
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/wasm/
H A Dmodule-compiler.h112 std::unique_ptr<byte[]> bytes_copy, size_t length,
H A Dwasm-engine.cc536 ModuleWireBytes bytes_copy(copy.get(), copy.get() + bytes.length()); in AsyncCompile() local
537 module_object = SyncCompile(isolate, enabled, &thrower, bytes_copy); in AsyncCompile()
682 std::unique_ptr<byte[]> bytes_copy, size_t length, Handle<Context> context, in CreateAsyncCompileJob() argument
686 new AsyncCompileJob(isolate, enabled, std::move(bytes_copy), length, in CreateAsyncCompileJob()
/dports/lang/v8/v8-9.6.180.12/src/wasm/
H A Dmodule-compiler.h122 std::unique_ptr<byte[]> bytes_copy, size_t length,
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/wasm/
H A Dmodule-compiler.h113 std::unique_ptr<byte[]> bytes_copy, size_t length,
H A Dwasm-engine.cc600 ModuleWireBytes bytes_copy(copy.get(), copy.get() + bytes.length()); in AsyncCompile() local
601 module_object = SyncCompile(isolate, enabled, &thrower, bytes_copy); in AsyncCompile()
859 std::unique_ptr<byte[]> bytes_copy, size_t length, Handle<Context> context, in CreateAsyncCompileJob() argument
864 isolate, enabled, std::move(bytes_copy), length, context, in CreateAsyncCompileJob()

1234