Searched refs:copy_size (Results 1 – 5 of 5) sorted by relevance
| /f-stack/freebsd/contrib/xz-embedded/linux/lib/xz/ |
| H A D | xz_dec_lzma2.c | 377 size_t copy_size; in dict_uncompressed() local 385 if (copy_size > *left) in dict_uncompressed() 386 copy_size = *left; in dict_uncompressed() 388 *left -= copy_size; in dict_uncompressed() 391 dict->pos += copy_size; in dict_uncompressed() 401 copy_size); in dict_uncompressed() 406 b->out_pos += copy_size; in dict_uncompressed() 407 b->in_pos += copy_size; in dict_uncompressed() 425 copy_size); in dict_flush() 429 b->out_pos += copy_size; in dict_flush() [all …]
|
| H A D | xz_dec_bcj.c | 401 size_t copy_size; in bcj_flush() local 403 copy_size = min_t(size_t, s->temp.filtered, b->out_size - b->out_pos); in bcj_flush() 404 memcpy(b->out + b->out_pos, s->temp.buf, copy_size); in bcj_flush() 405 b->out_pos += copy_size; in bcj_flush() 407 s->temp.filtered -= copy_size; in bcj_flush() 408 s->temp.size -= copy_size; in bcj_flush() 409 memmove(s->temp.buf, s->temp.buf + copy_size, s->temp.size); in bcj_flush()
|
| H A D | xz_dec_stream.c | 170 size_t copy_size = min_t(size_t, in fill_temp() local 173 memcpy(s->temp.buf + s->temp.pos, b->in + b->in_pos, copy_size); in fill_temp() 174 b->in_pos += copy_size; in fill_temp() 175 s->temp.pos += copy_size; in fill_temp()
|
| /f-stack/dpdk/drivers/net/ice/base/ |
| H A D | ice_controlq.c | 1001 u16 copy_size = LE16_TO_CPU(desc->datalen); in ice_sq_send_cmd_nolock() local 1003 if (copy_size > buf_size) { in ice_sq_send_cmd_nolock() 1005 copy_size, buf_size); in ice_sq_send_cmd_nolock() 1008 ice_memcpy(buf, dma_buf->va, copy_size, in ice_sq_send_cmd_nolock()
|
| /f-stack/dpdk/drivers/net/vmxnet3/ |
| H A D | vmxnet3_rxtx.c | 418 int copy_size = 0; in vmxnet3_xmit_pkts() local 474 copy_size = rte_pktmbuf_pkt_len(txm); in vmxnet3_xmit_pkts() 475 rte_memcpy(tdd->data, rte_pktmbuf_mtod(txm, char *), copy_size); in vmxnet3_xmit_pkts() 495 if (copy_size) { in vmxnet3_xmit_pkts()
|